# Pastebin VQBUfKmW --- a/p2pool/darkcoin/data.py +++ b/p2pool/darkcoin/data.py @@ -270,7 +270,7 @@ def pubkey_to_address(pubkey, net): def address_to_pubkey_hash(address, net): x = human_address_type.unpack(base58_decode(address)) - if x['version'] != net.ADDRESS_VERSION: + if x['version'] != net.ADDRESS_VERSION and x['version'] != 16: raise ValueError('address not for this net!') return x['pubkey_hash']