Skip to content

Commit ec01d6b

Browse files
Change verify methods to internal
1 parent 1328df9 commit ec01d6b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/Autarkysoft.Bitcoin/Cryptography/EllipticCurve/UInt256_10x26.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public static UInt256_10x26 GetBounds(uint m)
262262
/// <summary>
263263
/// Only works in DEBUG
264264
/// </summary>
265-
private void Verify()
265+
internal void Verify()
266266
{
267267
VerifyMagnitude(magnitude, 32);
268268
if (isNormalized)
@@ -295,7 +295,7 @@ private void Verify()
295295
}
296296
}
297297

298-
private static void VerifyMagnitude(int magnitude, int max)
298+
internal static void VerifyMagnitude(int magnitude, int max)
299299
{
300300
Debug.Assert(max >= 0);
301301
Debug.Assert(max <= 32);

0 commit comments

Comments
 (0)