Change LockTime in TxRawDecodeResult to uint32.

This commit is contained in:
Dave Collins 2013-12-30 18:42:21 -06:00
parent 11d39125de
commit c0236b5a2f

View file

@ -83,7 +83,7 @@ type TxRawResult struct {
type TxRawDecodeResult struct {
Txid string `json:"txid"`
Version uint32 `json:"version"`
Locktime int `json:"locktime"`
Locktime uint32 `json:"locktime"`
Vin []Vin `json:"vin"`
Vout []Vout `json:"vout"`
}