diff options
author | John Newbery <john@johnnewbery.com> | 2018-04-16 13:53:35 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-04-16 14:43:34 -0400 |
commit | 3db1ba01c783c1e35782405750c308be2b6171e3 (patch) | |
tree | c997b62d8eabad3e51a523ddbbbe7425915487df /test/functional/wallet_listreceivedby.py | |
parent | 4e671f0353beaa3759f2069569f05239c0be89cf (diff) |
[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_listreceivedby.py')
-rwxr-xr-x | test/functional/wallet_listreceivedby.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_listreceivedby.py b/test/functional/wallet_listreceivedby.py index 7b34febddc..aba5d642bc 100755 --- a/test/functional/wallet_listreceivedby.py +++ b/test/functional/wallet_listreceivedby.py @@ -14,6 +14,7 @@ from test_framework.util import (assert_array_result, class ReceivedByTest(BitcoinTestFramework): def set_test_params(self): self.num_nodes = 2 + self.extra_args = [['-deprecatedrpc=accounts']] * 2 def run_test(self): # Generate block to get out of IBD |