From cf9ed307e6efd2b63d54c74ca8bdd236028fd9dc Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Thu, 9 Aug 2018 13:27:45 -0400 Subject: qa: blocktools enforce named args for amount --- test/functional/feature_cltv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/functional/feature_cltv.py') diff --git a/test/functional/feature_cltv.py b/test/functional/feature_cltv.py index cc59ea8c9b..071ffbd426 100755 --- a/test/functional/feature_cltv.py +++ b/test/functional/feature_cltv.py @@ -65,7 +65,7 @@ class BIP65Test(BitcoinTestFramework): self.log.info("Test that an invalid-according-to-CLTV transaction can still appear in a block") spendtx = create_transaction(self.nodes[0], self.coinbase_txids[0], - self.nodeaddress, 1.0) + self.nodeaddress, amount=1.0) cltv_invalidate(spendtx) spendtx.rehash() @@ -100,7 +100,7 @@ class BIP65Test(BitcoinTestFramework): block.nVersion = 4 spendtx = create_transaction(self.nodes[0], self.coinbase_txids[1], - self.nodeaddress, 1.0) + self.nodeaddress, amount=1.0) cltv_invalidate(spendtx) spendtx.rehash() -- cgit v1.2.3