Skip to content

Commit dfbfb95

Browse files
authored
Update src/Neo/Cryptography/Murmur32.cs
1 parent 9c5e956 commit dfbfb95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Neo/Cryptography/Murmur32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public Murmur32(uint seed)
5050
/// Append data to murmur computation
5151
/// </summary>
5252
/// <param name="source">Source</param>
53-
public void Append(ReadOnlySpan<byte> source)
53+
private void Append(ReadOnlySpan<byte> source)
5454
{
5555
_length += source.Length;
5656
for (; source.Length >= 4; source = source[4..])

0 commit comments

Comments
 (0)