We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9fd8f commit 2918831Copy full SHA for 2918831
src/Neo.Cryptography.MPTTrie/Cache.cs
@@ -48,7 +48,7 @@ private byte[] Key(UInt256 hash)
48
{
49
var buffer = new byte[UInt256.Length + 1];
50
buffer[0] = _prefix;
51
- hash.GetSpan().CopyTo(buffer.AsSpan(1));
+ hash.Serialize(buffer.AsSpan(1));
52
return buffer;
53
}
54
0 commit comments