Skip to content

Commit

Permalink
protected methods
Browse files Browse the repository at this point in the history
  • Loading branch information
meevee98 committed Aug 12, 2020
1 parent 3f25630 commit f90496f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/neo/SmartContract/ApplicationEngine.Binary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ protected internal byte[] Base64Decode(string s)
return FromBase64String(s);
}

internal string Base58Encode(byte[] data)
protected internal string Base58Encode(byte[] data)
{
return Base58.Encode(data);
}

internal byte[] Base58Decode(string s)
protected internal byte[] Base58Decode(string s)
{
return Base58.Decode(s);
}
Expand Down

0 comments on commit f90496f

Please sign in to comment.