diff options
author | Bas van Kervel <basvankervel@gmail.com> | 2016-10-05 18:24:42 +0800 |
---|---|---|
committer | Bas van Kervel <basvankervel@gmail.com> | 2016-10-05 18:24:42 +0800 |
commit | 71e8ae01b84cdde56761436a52552a25b03d2a97 (patch) | |
tree | 31be09239d40c93f8fbcf3bf37135a95ffb8ba4d /internal | |
parent | a7cc3248fe3ecb3439d0b69f5823f294b2854886 (diff) | |
download | go-tangerine-71e8ae01b84cdde56761436a52552a25b03d2a97.tar.gz go-tangerine-71e8ae01b84cdde56761436a52552a25b03d2a97.tar.zst go-tangerine-71e8ae01b84cdde56761436a52552a25b03d2a97.zip |
core/types: renamed receiptRoot to receiptsRoot
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 9a97be25f..16cdffd00 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -597,7 +597,7 @@ func (s *PublicBlockChainAPI) rpcOutputBlock(b *types.Block, inclTx bool, fullTx "gasUsed": rpc.NewHexNumber(head.GasUsed), "timestamp": rpc.NewHexNumber(head.Time), "transactionsRoot": head.TxHash, - "receiptRoot": head.ReceiptHash, + "receiptsRoot": head.ReceiptHash, } if inclTx { |