Change LockTime in TxRawDecodeResult to uint32.
This commit is contained in:
parent
11d39125de
commit
c0236b5a2f
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ type TxRawResult struct {
|
||||||
type TxRawDecodeResult struct {
|
type TxRawDecodeResult struct {
|
||||||
Txid string `json:"txid"`
|
Txid string `json:"txid"`
|
||||||
Version uint32 `json:"version"`
|
Version uint32 `json:"version"`
|
||||||
Locktime int `json:"locktime"`
|
Locktime uint32 `json:"locktime"`
|
||||||
Vin []Vin `json:"vin"`
|
Vin []Vin `json:"vin"`
|
||||||
Vout []Vout `json:"vout"`
|
Vout []Vout `json:"vout"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue