You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/functional/test_framework/util.py
+1-12Lines changed: 1 addition & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -542,18 +542,7 @@ def modinv(a, n):
542
542
"""Compute the modular inverse of a modulo n using the extended Euclidean
543
543
Algorithm. See https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm#Modular_integers.
544
544
"""
545
-
# TODO: Change to pow(a, -1, n) available in Python 3.8
0 commit comments