aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorjohnliu-dexon <42129254+johnliu-dexon@users.noreply.github.com>2018-11-27 22:56:00 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:58 +0800
commita1aa74a83e7c775cd68b0e34481701a3e6221598 (patch)
tree30f24dc3ebc7854da59959dfc918eb0ad4ccf927 /internal
parente50e5b366bbd41783ddaad30bb4f7ad0a441ed43 (diff)
downloaddexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar.gz
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar.bz2
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar.lz
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar.xz
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.tar.zst
dexon-a1aa74a83e7c775cd68b0e34481701a3e6221598.zip
internal/ethapi: add transactionHash in blockreceipts (#58)
Diffstat (limited to 'internal')
-rw-r--r--internal/ethapi/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go
index 2226bebb1..1be3bb413 100644
--- a/internal/ethapi/api.go
+++ b/internal/ethapi/api.go
@@ -683,6 +683,7 @@ func (s *PublicBlockChainAPI) GetBlockReceiptsByHash(ctx context.Context, blockH
resp := make([]map[string]interface{}, 0, len(receipts))
for _, receipt := range receipts {
fields := map[string]interface{}{
+ "transactionHash": receipt.TxHash,
"gasUsed": hexutil.Uint64(receipt.GasUsed),
"cumulativeGasUsed": hexutil.Uint64(receipt.CumulativeGasUsed),
"contractAddress": nil,