Bump NBitcoin
Some checks failed
Publish application / build (push) Has been cancelled

This commit is contained in:
nicolas.dorier 2025-06-09 18:09:34 +09:00
parent dfb911d7cf
commit df3ac21669
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
<Description>A library to help you add BIP78 payjoin receiving support in your bitcoin wallet.</Description>
<PackageProjectUrl>https://github.com/BTCPayServer/BTCPayServer.BIP78</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion>0.2.4</PackageVersion>
<PackageVersion>0.2.5</PackageVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>

View File

@ -12,12 +12,12 @@
<Description>A library to help you add BIP78 payjoin sending support in your bitcoin wallet.</Description>
<PackageProjectUrl>https://github.com/BTCPayServer/BTCPayServer.BIP78</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageVersion>0.2.4</PackageVersion>
<PackageVersion>0.2.5</PackageVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NBitcoin" Version="7.0.49" />
<PackageReference Include="NBitcoin" Version="9.0.0" />
</ItemGroup>
</Project>

View File

@ -2,7 +2,7 @@ using NBitcoin;
namespace BTCPayServer.BIP78.Sender
{
public interface IPayjoinWallet: IHDScriptPubKey
public interface IPayjoinWallet : IHDScriptPubKey
{
public ScriptPubKeyType ScriptPubKeyType { get; }
RootedKeyPath RootedKeyPath { get; }