From cc628c358eba4d480254b7e0716c4351ece70cab Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 22 Aug 2019 20:00:49 -0400 Subject: [PATCH] Update types/tx.go --- types/tx.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/tx.go b/types/tx.go index e8cde4c4..da3dc2cb 100644 --- a/types/tx.go +++ b/types/tx.go @@ -84,7 +84,7 @@ func (txs Txs) Proof(i int) TxProof { // TxProof represents a Merkle proof of the presence of a transaction in the Merkle tree. type TxProof struct { RootHash cmn.HexBytes `json:"root_hash"` - Data Tx `json:"Data"` + Data Tx `json:"data"` Proof merkle.SimpleProof `json:"proof"` }