From 257d81ddd16574aaeb225b070d86c255769569e1 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 13 Apr 2017 13:35:16 -0400 Subject: [PATCH] rpc/core/types: uintX -> int --- rpc/core/types/responses.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpc/core/types/responses.go b/rpc/core/types/responses.go index 9ed2383b2..50b36099d 100644 --- a/rpc/core/types/responses.go +++ b/rpc/core/types/responses.go @@ -79,8 +79,8 @@ type ResultBroadcastTxCommit struct { } type ResultTx struct { - Height uint64 `json:"height"` - Index uint32 `json:"index"` + Height int `json:"height"` + Index int `json:"index"` DeliverTx abci.ResponseDeliverTx `json:"deliver_tx"` Tx types.Tx `json:"tx"` Proof types.TxProof `json:"proof,omitempty"`