add gettxoutsetinfo to btcctl
This commit is contained in:
parent
46709bda08
commit
ea689489d3
1 changed files with 6 additions and 0 deletions
|
@ -73,6 +73,7 @@ var commandHandlers = map[string]*handlerData{
|
||||||
"getrawtransaction": &handlerData{1, 1, displayJSONDump, []conversionHandler{nil, toInt}, makeGetRawTransaction, "<txhash> [verbose=0]"},
|
"getrawtransaction": &handlerData{1, 1, displayJSONDump, []conversionHandler{nil, toInt}, makeGetRawTransaction, "<txhash> [verbose=0]"},
|
||||||
"getreceivedbyaccount": &handlerData{1, 1, displayGeneric, []conversionHandler{nil, toInt}, makeGetReceivedByAccount, "<account> [minconf=1]"},
|
"getreceivedbyaccount": &handlerData{1, 1, displayGeneric, []conversionHandler{nil, toInt}, makeGetReceivedByAccount, "<account> [minconf=1]"},
|
||||||
"getreceivedbyaddress": &handlerData{1, 1, displayGeneric, []conversionHandler{nil, toInt}, makeGetReceivedByAddress, "<address> [minconf=1]"},
|
"getreceivedbyaddress": &handlerData{1, 1, displayGeneric, []conversionHandler{nil, toInt}, makeGetReceivedByAddress, "<address> [minconf=1]"},
|
||||||
|
"gettxoutsetinfo": &handlerData{0, 0, displayJSONDump, nil, makeGetTxOutSetInfo, ""},
|
||||||
"getwork": &handlerData{0, 1, displayJSONDump, nil, makeGetWork, "[jsonrequestobject]"},
|
"getwork": &handlerData{0, 1, displayJSONDump, nil, makeGetWork, "[jsonrequestobject]"},
|
||||||
"help": &handlerData{0, 1, displayGeneric, nil, makeHelp, "[commandName]"},
|
"help": &handlerData{0, 1, displayGeneric, nil, makeHelp, "[commandName]"},
|
||||||
"importprivkey": &handlerData{1, 2, displayGeneric, []conversionHandler{nil, nil, toBool}, makeImportPrivKey, "<wifprivkey> [label] [rescan=true]"},
|
"importprivkey": &handlerData{1, 2, displayGeneric, []conversionHandler{nil, nil, toBool}, makeImportPrivKey, "<wifprivkey> [label] [rescan=true]"},
|
||||||
|
@ -414,6 +415,11 @@ func makeGetReceivedByAddress(args []interface{}) (btcjson.Cmd, error) {
|
||||||
return btcjson.NewGetReceivedByAddressCmd("btcctl", args[0].(string), opt...)
|
return btcjson.NewGetReceivedByAddressCmd("btcctl", args[0].(string), opt...)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// makeGetTxOutSetInfo generates the cmd structure for gettxoutsetinfo commands.
|
||||||
|
func makeGetTxOutSetInfo(args []interface{}) (btcjson.Cmd, error) {
|
||||||
|
return btcjson.NewGetTxOutSetInfoCmd("btcctl")
|
||||||
|
}
|
||||||
|
|
||||||
func makeGetWork(args []interface{}) (btcjson.Cmd, error) {
|
func makeGetWork(args []interface{}) (btcjson.Cmd, error) {
|
||||||
cmd, err := btcjson.NewGetWorkCmd("btcctl")
|
cmd, err := btcjson.NewGetWorkCmd("btcctl")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue