Skip to content

Commit

Permalink
1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kzorin52 committed Jan 17, 2024
1 parent ca8673b commit c5dc75a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions Algos/Secp256K1HdKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ namespace NBip32Fast.Algos;
public class Secp256K1HdKey : IHdKeyAlgo
{
private static readonly ReadOnlyMemory<byte> CurveBytes = new("Bitcoin seed"u8.ToArray());

private static readonly UInt256 N =
UInt256.Parse("115792089237316195423570985008687907852837564279074904382605163141518161494337");
private static readonly UInt256 N = UInt256.Parse("115792089237316195423570985008687907852837564279074904382605163141518161494337");

public HdKey GetMasterKeyFromSeed(in ReadOnlySpan<byte> seed)
{
Expand Down
1 change: 1 addition & 0 deletions NBip32Fast.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Supports SecP256k1 and Ed25519</Description>
<PropertyGroup>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.0.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c5dc75a

Please sign in to comment.