Add 'stop' to the RPC handlers map.
Sending a stop request to wallet should stop the wallet, not pass the unhandled request to btcd. Instead, catch it with the Unimplemented handler.
This commit is contained in:
parent
d7a4e5e816
commit
a0e94501cf
1 changed files with 1 additions and 0 deletions
|
@ -76,6 +76,7 @@ var rpcHandlers = map[string]cmdHandler{
|
|||
"setaccount": Unimplemented,
|
||||
"signmessage": Unimplemented,
|
||||
"signrawtransaction": Unimplemented,
|
||||
"stop": Unimplemented,
|
||||
"validateaddress": Unimplemented,
|
||||
"verifymessage": Unimplemented,
|
||||
|
||||
|
|
Loading…
Reference in a new issue