diff options
author | John Newbery <john@johnnewbery.com> | 2019-03-22 10:21:51 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2019-03-22 10:30:25 -0400 |
commit | 839c3f7c4937eb8a3e1e5ab2dafff26688af1078 (patch) | |
tree | 13cbc6f28056f4039002a98d4f5a59c1b022574b /test | |
parent | abd914ed34f12a5e7773e87e0457b04bcb7d58c4 (diff) |
[rpc] Remove signrawtransaction warning
signrawtransaction was deprecated in 0.17 and removed in 0.18. A warning
was left in place to tell users to migrate to using
signrawtransactionswithwallet or signrawtransactionwithkey. Remove the
warning now that it's been two releases since the method was removed.
Diffstat (limited to 'test')
-rwxr-xr-x | test/functional/rpc_signrawtransaction.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/functional/rpc_signrawtransaction.py b/test/functional/rpc_signrawtransaction.py index dcafc82857..780758e219 100755 --- a/test/functional/rpc_signrawtransaction.py +++ b/test/functional/rpc_signrawtransaction.py @@ -15,7 +15,6 @@ class SignRawTransactionsTest(BitcoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 2 - self.extra_args = [["-deprecatedrpc=signrawtransaction"], []] def skip_test_if_missing_module(self): self.skip_if_no_wallet() |