fix getrawtransaction verbose to be bool.

This commit is contained in:
Owain G. Ainsworth 2013-12-11 17:33:24 +00:00
parent 8aaad1e97b
commit 7b304515d6

View file

@ -57,7 +57,7 @@ var commandHandlers = map[string]*handlerData{
"getgenerate": &handlerData{0, 0, displayGeneric, nil, makeGetGenerate, ""}, "getgenerate": &handlerData{0, 0, displayGeneric, nil, makeGetGenerate, ""},
"getpeerinfo": &handlerData{0, 0, displaySpewDump, nil, makeGetPeerInfo, ""}, "getpeerinfo": &handlerData{0, 0, displaySpewDump, nil, makeGetPeerInfo, ""},
"getrawmempool": &handlerData{0, 1, displaySpewDump, []conversionHandler{toBool}, makeGetRawMempool, "[verbose=false]"}, "getrawmempool": &handlerData{0, 1, displaySpewDump, []conversionHandler{toBool}, makeGetRawMempool, "[verbose=false]"},
"getrawtransaction": &handlerData{1, 1, displaySpewDump, []conversionHandler{nil, toInt}, makeGetRawTransaction, "<txhash> [verbose=0]"}, "getrawtransaction": &handlerData{1, 1, displaySpewDump, []conversionHandler{nil, toBool}, makeGetRawTransaction, "<txhash> [verbose=false]"},
"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]"},
"listtransactions": &handlerData{0, 3, displaySpewDump, []conversionHandler{nil, toInt, toInt}, makeListTransactions, "[account] [count=10] [from=0]"}, "listtransactions": &handlerData{0, 3, displaySpewDump, []conversionHandler{nil, toInt, toInt}, makeListTransactions, "[account] [count=10] [from=0]"},
"verifychain": &handlerData{0, 2, displaySpewDump, []conversionHandler{toInt, toInt}, makeVerifyChain, "[level] [depth]"}, "verifychain": &handlerData{0, 2, displaySpewDump, []conversionHandler{toInt, toInt}, makeVerifyChain, "[level] [depth]"},
@ -219,13 +219,12 @@ func makeGetRawMempool(args []interface{}) (btcjson.Cmd, error) {
// makeRawTransaction generates the cmd structure for // makeRawTransaction generates the cmd structure for
// getrawtransaction comands. // getrawtransaction comands.
func makeGetRawTransaction(args []interface{}) (btcjson.Cmd, error) { func makeGetRawTransaction(args []interface{}) (btcjson.Cmd, error) {
i := 0 opt := make([]bool, 0, 1)
if len(args) > 1 { if len(args) > 1 {
i = args[1].(int) opt = append(opt, args[1].(bool))
} }
bi := i != 0 return btcjson.NewGetRawTransactionCmd("btcctl", args[0].(string), opt...)
return btcjson.NewGetRawTransactionCmd("btcctl", args[0].(string), bi)
} }
// makeImportPrivKey generates the cmd structure for // makeImportPrivKey generates the cmd structure for