diff options
author | Joonmo Yang <dev@remagpie.com> | 2019-08-02 02:03:01 +0900 |
---|---|---|
committer | Joonmo Yang <dev@remagpie.com> | 2019-08-18 22:58:04 +0900 |
commit | 261843e4bef96ab296a9775819a99bfa60cad743 (patch) | |
tree | 8e8091916986f4a7fc201ed6cc7205cb45f9ff65 /test | |
parent | 3a3d8b83571205b8329d4ee25537e3cc4397c3b8 (diff) |
wallet/rpc: Use the default maxfeerate value as BTC/kB
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/feature_segwit.py | 2 | ||||
-rwxr-xr-x | test/functional/mempool_accept.py | 1 | ||||
-rwxr-xr-x | test/functional/wallet_basic.py | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/test/functional/feature_segwit.py b/test/functional/feature_segwit.py index a71d4071d5..702676402e 100755 --- a/test/functional/feature_segwit.py +++ b/test/functional/feature_segwit.py @@ -240,7 +240,7 @@ class SegWitTest(BitcoinTestFramework): tx.vin.append(CTxIn(COutPoint(int(txid2, 16), 0), b"")) tx.vout.append(CTxOut(int(49.95 * COIN), CScript([OP_TRUE, OP_DROP] * 15 + [OP_TRUE]))) # Huge fee tx.calc_sha256() - txid3 = self.nodes[0].sendrawtransaction(ToHex(tx)) + txid3 = self.nodes[0].sendrawtransaction(ToHex(tx), 0) assert tx.wit.is_null() assert txid3 in self.nodes[0].getrawmempool() diff --git a/test/functional/mempool_accept.py b/test/functional/mempool_accept.py index 209a222004..c8bea590cc 100755 --- a/test/functional/mempool_accept.py +++ b/test/functional/mempool_accept.py @@ -183,6 +183,7 @@ class MempoolAcceptanceTest(BitcoinTestFramework): self.check_mempool_result( result_expected=[{'txid': tx.rehash(), 'allowed': True}], rawtxs=[tx.serialize().hex()], + maxfeerate=0, ) self.log.info('A transaction with no outputs') diff --git a/test/functional/wallet_basic.py b/test/functional/wallet_basic.py index 34e84fcf55..9867729b27 100755 --- a/test/functional/wallet_basic.py +++ b/test/functional/wallet_basic.py @@ -433,7 +433,7 @@ class WalletTest(BitcoinTestFramework): # Split into two chains rawtx = self.nodes[0].createrawtransaction([{"txid": singletxid, "vout": 0}], {chain_addrs[0]: node0_balance / 2 - Decimal('0.01'), chain_addrs[1]: node0_balance / 2 - Decimal('0.01')}) signedtx = self.nodes[0].signrawtransactionwithwallet(rawtx) - singletxid = self.nodes[0].sendrawtransaction(signedtx["hex"]) + singletxid = self.nodes[0].sendrawtransaction(signedtx["hex"], 0) self.nodes[0].generate(1) # Make a long chain of unconfirmed payments without hitting mempool limit |