Bump nbitcoin and nbxplorer

This commit is contained in:
nicolas.dorier 2019-01-16 15:16:41 +09:00
parent adc050f190
commit c9d778c94b
3 changed files with 4 additions and 4 deletions

View file

@ -69,7 +69,7 @@ services:
nbxplorer: nbxplorer:
image: nicolasdorier/nbxplorer:2.0.0.2 image: nicolasdorier/nbxplorer:2.0.0.8
restart: unless-stopped restart: unless-stopped
ports: ports:
- "32838:32838" - "32838:32838"

View file

@ -47,10 +47,10 @@
<PrivateAssets>all</PrivateAssets> <PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference> </PackageReference>
<PackageReference Include="NBitcoin" Version="4.1.1.73" /> <PackageReference Include="NBitcoin" Version="4.1.1.77" />
<PackageReference Include="NBitpayClient" Version="1.0.0.30" /> <PackageReference Include="NBitpayClient" Version="1.0.0.30" />
<PackageReference Include="DBreeze" Version="1.92.0" /> <PackageReference Include="DBreeze" Version="1.92.0" />
<PackageReference Include="NBXplorer.Client" Version="2.0.0.1" /> <PackageReference Include="NBXplorer.Client" Version="2.0.0.3" />
<PackageReference Include="NicolasDorier.CommandLine" Version="1.0.0.2" /> <PackageReference Include="NicolasDorier.CommandLine" Version="1.0.0.2" />
<PackageReference Include="NicolasDorier.CommandLine.Configuration" Version="1.0.0.3" /> <PackageReference Include="NicolasDorier.CommandLine.Configuration" Version="1.0.0.3" />
<PackageReference Include="NicolasDorier.RateLimits" Version="1.0.0.3" /> <PackageReference Include="NicolasDorier.RateLimits" Version="1.0.0.3" />

View file

@ -117,7 +117,7 @@ namespace BTCPayServer.Hosting
services.TryAddSingleton<CurrencyNameTable>(); services.TryAddSingleton<CurrencyNameTable>();
services.TryAddSingleton<IFeeProviderFactory>(o => new NBXplorerFeeProviderFactory(o.GetRequiredService<ExplorerClientProvider>()) services.TryAddSingleton<IFeeProviderFactory>(o => new NBXplorerFeeProviderFactory(o.GetRequiredService<ExplorerClientProvider>())
{ {
Fallback = new FeeRate(100, 1), Fallback = new FeeRate(100L, 1),
BlockTarget = 20 BlockTarget = 20
}); });