Browse Source

rpc/core/types: uintX -> int

pull/412/head
Ethan Buchman 8 years ago
parent
commit
257d81ddd1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      rpc/core/types/responses.go

+ 2
- 2
rpc/core/types/responses.go 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"`


Loading…
Cancel
Save