diff options
| author | Andrew Chow <[email protected]> | 2017-06-12 12:23:02 -0700 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2018-02-17 11:42:00 -0500 |
| commit | 1e79c055cd30d21ba5f8c7f81ef911d5d4e295a8 (patch) | |
| tree | 22c28017f71d4f9b0dddb77cc41e733095ec84a2 /test/functional/wallet_txn_clone.py | |
| parent | Merge #10583: [RPC] Split part of validateaddress into getaddressinfo (diff) | |
| download | discoin-1e79c055cd30d21ba5f8c7f81ef911d5d4e295a8.tar.xz discoin-1e79c055cd30d21ba5f8c7f81ef911d5d4e295a8.zip | |
Split signrawtransaction into wallet and non-wallet
Splits signrwatransaction into a wallet version (signrawtransactionwithwallet) and
non-wallet version (signrawtransactionwithkey). signrawtransaction is marked as DEPRECATED
and will call the right signrawtransaction* command as per the parameters in order to
maintain compatibility.
Updated signrawtransactions test to use new RPCs
Diffstat (limited to 'test/functional/wallet_txn_clone.py')
| -rwxr-xr-x | test/functional/wallet_txn_clone.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/wallet_txn_clone.py b/test/functional/wallet_txn_clone.py index ce26d6e0e..d742ec461 100755 --- a/test/functional/wallet_txn_clone.py +++ b/test/functional/wallet_txn_clone.py @@ -78,7 +78,7 @@ class TxnMallTest(BitcoinTestFramework): # Use a different signature hash type to sign. This creates an equivalent but malleated clone. # Don't send the clone anywhere yet - tx1_clone = self.nodes[0].signrawtransaction(clone_raw, None, None, "ALL|ANYONECANPAY") + tx1_clone = self.nodes[0].signrawtransactionwithwallet(clone_raw, None, "ALL|ANYONECANPAY") assert_equal(tx1_clone["complete"], True) # Have node0 mine a block, if requested: |