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
|
// it lacks support for wallet functionality. For these commands the user
|
||||||
// should ask a connected instance of btcwallet.
|
// should ask a connected instance of btcwallet.
|
||||||
var rpcAskWallet = map[string]struct{}{
|
var rpcAskWallet = map[string]struct{}{
|
||||||
"addmultisigaddress": {},
|
"addmultisigaddress": {},
|
||||||
"backupwallet": {},
|
"backupwallet": {},
|
||||||
"createencryptedwallet": {},
|
"createencryptedwallet": {},
|
||||||
"createmultisig": {},
|
"createmultisig": {},
|
||||||
"dumpprivkey": {},
|
"dumpprivkey": {},
|
||||||
"dumpwallet": {},
|
"dumpwallet": {},
|
||||||
"encryptwallet": {},
|
"encryptwallet": {},
|
||||||
"getaccount": {},
|
"getaccount": {},
|
||||||
"getaccountaddress": {},
|
"getaccountaddress": {},
|
||||||
"getaddressesbyaccount": {},
|
"getaddressesbyaccount": {},
|
||||||
"getbalance": {},
|
"getbalance": {},
|
||||||
"getnewaddress": {},
|
"getnewaddress": {},
|
||||||
"getrawchangeaddress": {},
|
"getrawchangeaddress": {},
|
||||||
"getreceivedbyaccount": {},
|
"getreceivedbyaccount": {},
|
||||||
"getreceivedbyaddress": {},
|
"getreceivedbyaddress": {},
|
||||||
"gettransaction": {},
|
"gettransaction": {},
|
||||||
"gettxoutsetinfo": {},
|
"gettxoutsetinfo": {},
|
||||||
"getunconfirmedbalance": {},
|
"getunconfirmedbalance": {},
|
||||||
"getwalletinfo": {},
|
"getwalletinfo": {},
|
||||||
"importprivkey": {},
|
"importprivkey": {},
|
||||||
"importwallet": {},
|
"importwallet": {},
|
||||||
"keypoolrefill": {},
|
"keypoolrefill": {},
|
||||||
"listaccounts": {},
|
"listaccounts": {},
|
||||||
"listaddressgroupings": {},
|
"listaddressgroupings": {},
|
||||||
"listlockunspent": {},
|
"listlockunspent": {},
|
||||||
"listreceivedbyaccount": {},
|
"listreceivedbyaccount": {},
|
||||||
"listreceivedbyaddress": {},
|
"listreceivedbyaddress": {},
|
||||||
"listsinceblock": {},
|
"listsinceblock": {},
|
||||||
"listtransactions": {},
|
"listtransactions": {},
|
||||||
"listunspent": {},
|
"listunspent": {},
|
||||||
"lockunspent": {},
|
"lockunspent": {},
|
||||||
"move": {},
|
"move": {},
|
||||||
"sendfrom": {},
|
"sendfrom": {},
|
||||||
"sendmany": {},
|
"sendmany": {},
|
||||||
"sendtoaddress": {},
|
"sendtoaddress": {},
|
||||||
"setaccount": {},
|
"setaccount": {},
|
||||||
"settxfee": {},
|
"settxfee": {},
|
||||||
"signmessage": {},
|
"signmessage": {},
|
||||||
"signrawtransaction": {},
|
"signrawtransaction": {},
|
||||||
"walletlock": {},
|
"signrawtransactionWithWallet": {},
|
||||||
"walletpassphrase": {},
|
"walletlock": {},
|
||||||
"walletpassphrasechange": {},
|
"walletpassphrase": {},
|
||||||
|
"walletpassphrasechange": {},
|
||||||
}
|
}
|
||||||
|
|
||||||
// Commands that are currently unimplemented, but should ultimately be.
|
// Commands that are currently unimplemented, but should ultimately be.
|
||||||
|
|
Loading…
Add table
Reference in a new issue