def test_address_to_scripthash(self): address = "AK2nJJpJr6o664CWJKi1QRXjqeic2zRp8y" scripthash = cli.address_to_scripthash(address) self.assertEqual(scripthash, b'#\xba\'\x03\xc52c\xe8\xd6\xe5"\xdc2 39\xdc\xd8\xee\xe9') address = "AK2nJJpJr6o664CWJKi1QRXjqeic2zRpxx" with self.assertRaises(cli.ConversionError): scripthash = cli.address_to_scripthash(address)
def test_address_to_scripthash(self): address = "AK2nJJpJr6o664CWJKi1QRXjqeic2zRp8y" scripthash = cli.address_to_scripthash(address) self.assertEqual(len(scripthash), 20) address = "AK2nJJpJr6o664CWJKi1QRXjqeic2zRpxx" with self.assertRaises(cli.ConversionError): scripthash = cli.address_to_scripthash(address)