From c0236b5a2fdaadd28fa2589e9f44e60d01724de0 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Mon, 30 Dec 2013 18:42:21 -0600 Subject: [PATCH] Change LockTime in TxRawDecodeResult to uint32. --- jsonapi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsonapi.go b/jsonapi.go index 41b2fb9b8..3d9b0730c 100644 --- a/jsonapi.go +++ b/jsonapi.go @@ -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"` }