Skip to content

Commit

Permalink
Change PublicKeys constant length access modifier to be public (#145) (
Browse files Browse the repository at this point in the history
…#146)

* Change PublicKeys constant length access modifier to be public (#145)

* Bump Solnet version to 0.3.3
  • Loading branch information
skynetcapital committed Jul 11, 2021
1 parent 70d8fbf commit 0d06adb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SharedBuildProperties.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product>Solnet</Product>
<Version>0.3.2</Version>
<Version>0.3.3</Version>
<Copyright>Copyright 2021 &#169; Solnet</Copyright>
<Authors>blockmountain</Authors>
<PublisherName>blockmountain</PublisherName>
Expand Down
2 changes: 1 addition & 1 deletion src/Solnet.Wallet/PublicKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class PublicKey
/// <summary>
/// Public key length.
/// </summary>
private const int PublicKeyLength = 32;
public const int PublicKeyLength = 32;

private string _key;

Expand Down

0 comments on commit 0d06adb

Please sign in to comment.