Bitcoin/address validation: Difference between revisions

m (→‎{{header|C}}: use simple function from library)
(→‎{{header|Python}}: 25 -> length)
Line 119:
for char in bc:
n = n * 58 + digits58.index(char)
return n.to_bytes(25length, 'big')
 
def check_bc(bc):
Anonymous user