diff --git a/rpcserver.go b/rpcserver.go index e762cc1a..33ed8df4 100644 --- a/rpcserver.go +++ b/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.