add walletpassphrase to btcctl
This commit is contained in:
parent
221352586b
commit
82552e4465
1 changed files with 10 additions and 0 deletions
|
@ -76,6 +76,7 @@ var commandHandlers = map[string]*handlerData{
|
||||||
"stop": &handlerData{0, 0, displayGeneric, nil, makeStop, ""},
|
"stop": &handlerData{0, 0, displayGeneric, nil, makeStop, ""},
|
||||||
"submitblock": &handlerData{1, 1, displayGeneric, nil, makeSubmitBlock, "<hexdata> [jsonparametersobject]"},
|
"submitblock": &handlerData{1, 1, displayGeneric, nil, makeSubmitBlock, "<hexdata> [jsonparametersobject]"},
|
||||||
"verifychain": &handlerData{0, 2, displayJSONDump, []conversionHandler{toInt, toInt}, makeVerifyChain, "[level] [numblocks]"},
|
"verifychain": &handlerData{0, 2, displayJSONDump, []conversionHandler{toInt, toInt}, makeVerifyChain, "[level] [numblocks]"},
|
||||||
|
"walletpassphrase": &handlerData{1, 1, displayGeneric, []conversionHandler{nil, toInt64}, makeWalletPassphrase, "<passphrase> [timeout]"},
|
||||||
}
|
}
|
||||||
|
|
||||||
// toInt attempts to convert the passed string to an integer. It returns the
|
// toInt attempts to convert the passed string to an integer. It returns the
|
||||||
|
@ -449,6 +450,15 @@ func makeVerifyChain(args []interface{}) (btcjson.Cmd, error) {
|
||||||
return btcjson.NewVerifyChainCmd("btcctl", iargs...)
|
return btcjson.NewVerifyChainCmd("btcctl", iargs...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// makeWalletPassphrase generates the cmd structure for walletpassphrase commands.
|
||||||
|
func makeWalletPassphrase(args []interface{}) (btcjson.Cmd, error) {
|
||||||
|
timeout := int64(60)
|
||||||
|
if len(args) > 1 {
|
||||||
|
timeout = args[1].(int64)
|
||||||
|
}
|
||||||
|
return btcjson.NewWalletPassphraseCmd("btcctl", args[0].(string), timeout)
|
||||||
|
}
|
||||||
|
|
||||||
// send sends a JSON-RPC command to the specified RPC server and examines the
|
// send sends a JSON-RPC command to the specified RPC server and examines the
|
||||||
// results for various error conditions. It either returns a valid result or
|
// results for various error conditions. It either returns a valid result or
|
||||||
// an appropriate error.
|
// an appropriate error.
|
||||||
|
|
Loading…
Reference in a new issue