Allow verbose param on btcctl getrawtransaction.
This commit is contained in:
parent
c3a3fbcabf
commit
e3eca752da
1 changed files with 5 additions and 2 deletions
|
@ -182,7 +182,10 @@ 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 := args[1].(int)
|
i := 0
|
||||||
|
if len(args) > 1 {
|
||||||
|
i = args[1].(int)
|
||||||
|
}
|
||||||
|
|
||||||
bi := i != 0
|
bi := i != 0
|
||||||
return btcjson.NewGetRawTransactionCmd("btcctl", args[0].(string), bi)
|
return btcjson.NewGetRawTransactionCmd("btcctl", args[0].(string), bi)
|
||||||
|
|
Loading…
Reference in a new issue