rpc/core/types: uintX -> int

This commit is contained in:
Ethan Buchman
2017-04-13 13:35:16 -04:00
parent 6899c91ebe
commit 257d81ddd1
+2 -2
View File
@@ -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"`