mirror of
https://github.com/basicswap/basicswap.git
synced 2026-06-08 04:01:41 +02:00
fix: match Part address type used for funded itx and createSCLockTx
This commit is contained in:
@@ -104,7 +104,7 @@ class Test(BaseTest):
|
||||
)
|
||||
|
||||
def test_010_txn_size(self):
|
||||
logging.info("---------- Test {} txn_size".format(self.test_coin_from.name))
|
||||
logging.info(f"---------- Test {self.test_coin_from.name} txn_size")
|
||||
|
||||
self.ensure_balance(self.test_coin_from, 0, 100.0)
|
||||
|
||||
@@ -159,7 +159,7 @@ class Test(BaseTest):
|
||||
|
||||
ci.rpc_wallet("sendrawtransaction", [lock_tx.hex()])
|
||||
rv = ci.rpc_wallet("gettransaction", [txid])
|
||||
wallet_tx_fee = -ci.make_int(rv["details"][0]["fee"])
|
||||
wallet_tx_fee = -ci.make_int(rv["fee"])
|
||||
|
||||
assert wallet_tx_fee >= expect_fee_int
|
||||
assert wallet_tx_fee - expect_fee_int < 20
|
||||
|
||||
@@ -2595,7 +2595,7 @@ class Test(BaseTest):
|
||||
swap_clients[2],
|
||||
bid_id,
|
||||
BidStates.SWAP_COMPLETED,
|
||||
wait_for=120,
|
||||
wait_for=180,
|
||||
)
|
||||
wait_for_bid(
|
||||
test_delay_event,
|
||||
@@ -2603,7 +2603,7 @@ class Test(BaseTest):
|
||||
bid_id,
|
||||
BidStates.SWAP_COMPLETED,
|
||||
sent=True,
|
||||
wait_for=120,
|
||||
wait_for=180,
|
||||
)
|
||||
|
||||
# Verify expected inputs were used
|
||||
|
||||
Reference in New Issue
Block a user