Fix decodeAddress without bech32 hrp

This commit is contained in:
tecnovert
2022-11-14 13:54:48 +02:00
parent 54e434e1c9
commit 8ec6d55963
3 changed files with 9 additions and 3 deletions

View File

@@ -7,6 +7,7 @@
from .btc import BTCInterface
from basicswap.chainparams import Coins
from basicswap.util.address import decodeAddress
from .contrib.pivx_test_framework.messages import (
CBlock,
ToHex,
@@ -32,6 +33,9 @@ class PIVXInterface(BTCInterface):
txn_signed = self.rpc_callback('signrawtransaction', [txn_funded])['hex']
return txn_signed
def decodeAddress(self, address):
return decodeAddress(address)[1:]
def getBlockWithTxns(self, block_hash):
# TODO: Bypass decoderawtransaction and getblockheader
block = self.rpc_callback('getblock', [block_hash, False])