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/functional/feature_segwit.py | |
parent | 3a3d8b83571205b8329d4ee25537e3cc4397c3b8 (diff) |
wallet/rpc: Use the default maxfeerate value as BTC/kB
Diffstat (limited to 'test/functional/feature_segwit.py')
-rwxr-xr-x | test/functional/feature_segwit.py | 2 |
1 files changed, 1 insertions, 1 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() |