diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-11-17 12:54:39 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-03-24 11:17:08 -0400 |
commit | b55555da3e25a47f1e7fced7f09d4f0bf8198624 (patch) | |
tree | 551e618067f55d5de6d4b05623202020ce1f626b /test/functional/wallet_bumpfee.py | |
parent | b43aba89e356ff95b706e80d4802f60fc46a569a (diff) |
rpc: Add testmempoolaccept
Diffstat (limited to 'test/functional/wallet_bumpfee.py')
-rwxr-xr-x | test/functional/wallet_bumpfee.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/functional/wallet_bumpfee.py b/test/functional/wallet_bumpfee.py index 3e496248fd..5efc846b6e 100755 --- a/test/functional/wallet_bumpfee.py +++ b/test/functional/wallet_bumpfee.py @@ -17,14 +17,12 @@ make assumptions about execution order. from test_framework.blocktools import send_to_witness from test_framework.test_framework import BitcoinTestFramework from test_framework import blocktools +from test_framework.messages import BIP125_SEQUENCE_NUMBER from test_framework.mininode import CTransaction from test_framework.util import * import io -# Sequence number that is BIP 125 opt-in and BIP 68-compliant -BIP125_SEQUENCE_NUMBER = 0xfffffffd - WALLET_PASSPHRASE = "test" WALLET_PASSPHRASE_TIMEOUT = 3600 |