Change RawTxInput.Vout to uint32 as well.

This was missed by the previous commit.
This commit is contained in:
Dave Collins 2014-06-16 15:49:01 -05:00
parent b585d4e3a0
commit 370899e1fc

View file

@ -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"`
}