diff options
| author | John Newbery <[email protected]> | 2018-04-16 13:53:35 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2018-04-16 14:43:34 -0400 |
| commit | 3db1ba01c783c1e35782405750c308be2b6171e3 (patch) | |
| tree | c997b62d8eabad3e51a523ddbbbe7425915487df /test/functional/wallet_txn_clone.py | |
| parent | [tests] Rename rpc_listtransactions.py to wallet_listtransactions.py (diff) | |
| download | discoin-3db1ba01c783c1e35782405750c308be2b6171e3.tar.xz discoin-3db1ba01c783c1e35782405750c308be2b6171e3.zip | |
[tests] Set -deprecatedrpc=accounts in tests
Future commits will deprecate the accounts RPC methods, arguments and
return objects. Set the -deprecatedrpc=accounts switch now so tests
don't break in intermediate commits.
Diffstat (limited to 'test/functional/wallet_txn_clone.py')
| -rwxr-xr-x | test/functional/wallet_txn_clone.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_txn_clone.py b/test/functional/wallet_txn_clone.py index d742ec461..3057d20d6 100755 --- a/test/functional/wallet_txn_clone.py +++ b/test/functional/wallet_txn_clone.py @@ -10,6 +10,7 @@ from test_framework.util import * class TxnMallTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 4 + self.extra_args = [['-deprecatedrpc=accounts']] * 4 def add_options(self, parser): parser.add_option("--mineblock", dest="mine_block", default=False, action="store_true", |