diff options
author | Amiti Uttarwar <amiti@uttarwar.org> | 2019-02-13 19:22:40 -0800 |
---|---|---|
committer | Amiti Uttarwar <amiti@uttarwar.org> | 2019-02-17 21:42:08 -0800 |
commit | 8e4b4f683a0b342cec24cd51b1e98433034ea2ea (patch) | |
tree | 918975cc59f7a57016ce61d6343c21c5168a0f59 /test/functional/wallet_abandonconflict.py | |
parent | b72c787dc8f77dfeeab3774e9d84f03a066ff32e (diff) |
Address test todos by removing -txindex to nodes.
Originally added when updating getrawtransaction to stop searching unspent utxos.
Diffstat (limited to 'test/functional/wallet_abandonconflict.py')
-rwxr-xr-x | test/functional/wallet_abandonconflict.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/wallet_abandonconflict.py b/test/functional/wallet_abandonconflict.py index 0c3c247694..b0b151d2d6 100755 --- a/test/functional/wallet_abandonconflict.py +++ b/test/functional/wallet_abandonconflict.py @@ -26,8 +26,7 @@ from test_framework.util import ( class AbandonConflictTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 2 - # TODO: remove -txindex. Currently required for getrawtransaction call. - self.extra_args = [["-minrelaytxfee=0.00001", "-txindex"], []] + self.extra_args = [["-minrelaytxfee=0.00001"], []] def skip_test_if_missing_module(self): self.skip_if_no_wallet() |