[RPC] Split signrawtransaction into wallet and non-wallet RPC command #10579
Open
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
1023869
Move transaction combining from signrawtransaction to new RPC
achow101 1651942
Split signrawtransaction into wallet and non-wallet
achow101 9d1ecf2
scripted-diff: change signrawtransaction to signrawtransactionwithwal…
achow101 c1f9d3e
Fix tests broken by previous commit; Add test for signrawtransaction
achow101 8674057
sqaushme: Comment fix
achow101
Jump to file or symbol
Failed to load files and symbols.
Large diffs are not rendered by default.
Oops, something went wrong.
| @@ -0,0 +1,14 @@ | ||
| +// Copyright (c) 2017 The Bitcoin Core developers | ||
| +// Distributed under the MIT software license, see the accompanying | ||
| +// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
| + | ||
| +#ifndef BITCOIN_RPC_RAWTRANSACTION_H | ||
| +#define BITCOIN_RPC_RAWTRANSACTION_H | ||
| + | ||
| +class CBasicKeyStore; | ||
| + | ||
| +/** Sign a transaction with the given keystore and previous transactions */ | ||
| +UniValue signtransaction(CMutableTransaction& mtx, const UniValue& prevTxs, CBasicKeyStore *keystore, bool tempKeystore, const UniValue& hashType); | ||
| + | ||
| +#endif | ||
| + |
Oops, something went wrong.