From 370899e1fc9335624ba9858196caa904fed8a41e Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Mon, 16 Jun 2014 15:49:01 -0500 Subject: [PATCH] Change RawTxInput.Vout to uint32 as well. This was missed by the previous commit. --- jsoncmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsoncmd.go b/jsoncmd.go index 6dd97b6b..59df4328 100644 --- a/jsoncmd.go +++ b/jsoncmd.go @@ -5960,7 +5960,7 @@ func (cmd *SignMessageCmd) UnmarshalJSON(b []byte) error { // RawTxInput models the data needed for a raw tx input. type RawTxInput struct { Txid string `json:"txid"` - Vout int `json:"vout"` + Vout uint32 `json:"vout"` ScriptPubKey string `json:"scriptPubKey"` RedeemScript string `json:"redeemScript"` }