Change RawTxInput.Vout to uint32 as well.
This was missed by the previous commit.
This commit is contained in:
parent
b585d4e3a0
commit
370899e1fc
1 changed files with 1 additions and 1 deletions
|
@ -5960,7 +5960,7 @@ func (cmd *SignMessageCmd) UnmarshalJSON(b []byte) error {
|
||||||
// RawTxInput models the data needed for a raw tx input.
|
// RawTxInput models the data needed for a raw tx input.
|
||||||
type RawTxInput struct {
|
type RawTxInput struct {
|
||||||
Txid string `json:"txid"`
|
Txid string `json:"txid"`
|
||||||
Vout int `json:"vout"`
|
Vout uint32 `json:"vout"`
|
||||||
ScriptPubKey string `json:"scriptPubKey"`
|
ScriptPubKey string `json:"scriptPubKey"`
|
||||||
RedeemScript string `json:"redeemScript"`
|
RedeemScript string `json:"redeemScript"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue