rpcserver: Add signrawtransactionwithwallet command
This commit is contained in:
parent
b06cd1842e
commit
109613c76f
1 changed files with 43 additions and 42 deletions
85
rpcserver.go
85
rpcserver.go
|
@ -179,48 +179,49 @@ var rpcHandlersBeforeInit = map[string]commandHandler{
|
|||
// it lacks support for wallet functionality. For these commands the user
|
||||
// should ask a connected instance of btcwallet.
|
||||
var rpcAskWallet = map[string]struct{}{
|
||||
"addmultisigaddress": {},
|
||||
"backupwallet": {},
|
||||
"createencryptedwallet": {},
|
||||
"createmultisig": {},
|
||||
"dumpprivkey": {},
|
||||
"dumpwallet": {},
|
||||
"encryptwallet": {},
|
||||
"getaccount": {},
|
||||
"getaccountaddress": {},
|
||||
"getaddressesbyaccount": {},
|
||||
"getbalance": {},
|
||||
"getnewaddress": {},
|
||||
"getrawchangeaddress": {},
|
||||
"getreceivedbyaccount": {},
|
||||
"getreceivedbyaddress": {},
|
||||
"gettransaction": {},
|
||||
"gettxoutsetinfo": {},
|
||||
"getunconfirmedbalance": {},
|
||||
"getwalletinfo": {},
|
||||
"importprivkey": {},
|
||||
"importwallet": {},
|
||||
"keypoolrefill": {},
|
||||
"listaccounts": {},
|
||||
"listaddressgroupings": {},
|
||||
"listlockunspent": {},
|
||||
"listreceivedbyaccount": {},
|
||||
"listreceivedbyaddress": {},
|
||||
"listsinceblock": {},
|
||||
"listtransactions": {},
|
||||
"listunspent": {},
|
||||
"lockunspent": {},
|
||||
"move": {},
|
||||
"sendfrom": {},
|
||||
"sendmany": {},
|
||||
"sendtoaddress": {},
|
||||
"setaccount": {},
|
||||
"settxfee": {},
|
||||
"signmessage": {},
|
||||
"signrawtransaction": {},
|
||||
"walletlock": {},
|
||||
"walletpassphrase": {},
|
||||
"walletpassphrasechange": {},
|
||||
"addmultisigaddress": {},
|
||||
"backupwallet": {},
|
||||
"createencryptedwallet": {},
|
||||
"createmultisig": {},
|
||||
"dumpprivkey": {},
|
||||
"dumpwallet": {},
|
||||
"encryptwallet": {},
|
||||
"getaccount": {},
|
||||
"getaccountaddress": {},
|
||||
"getaddressesbyaccount": {},
|
||||
"getbalance": {},
|
||||
"getnewaddress": {},
|
||||
"getrawchangeaddress": {},
|
||||
"getreceivedbyaccount": {},
|
||||
"getreceivedbyaddress": {},
|
||||
"gettransaction": {},
|
||||
"gettxoutsetinfo": {},
|
||||
"getunconfirmedbalance": {},
|
||||
"getwalletinfo": {},
|
||||
"importprivkey": {},
|
||||
"importwallet": {},
|
||||
"keypoolrefill": {},
|
||||
"listaccounts": {},
|
||||
"listaddressgroupings": {},
|
||||
"listlockunspent": {},
|
||||
"listreceivedbyaccount": {},
|
||||
"listreceivedbyaddress": {},
|
||||
"listsinceblock": {},
|
||||
"listtransactions": {},
|
||||
"listunspent": {},
|
||||
"lockunspent": {},
|
||||
"move": {},
|
||||
"sendfrom": {},
|
||||
"sendmany": {},
|
||||
"sendtoaddress": {},
|
||||
"setaccount": {},
|
||||
"settxfee": {},
|
||||
"signmessage": {},
|
||||
"signrawtransaction": {},
|
||||
"signrawtransactionWithWallet": {},
|
||||
"walletlock": {},
|
||||
"walletpassphrase": {},
|
||||
"walletpassphrasechange": {},
|
||||
}
|
||||
|
||||
// Commands that are currently unimplemented, but should ultimately be.
|
||||
|
|
Loading…
Reference in a new issue