diff options
author | Felix Lange <fjl@twurst.com> | 2016-10-07 00:32:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-07 00:32:27 +0800 |
commit | c88e4357240d8c92d7866cb805781b792e166ec2 (patch) | |
tree | ef56d126a34a8801f6c716d7eae2a2e04122146f /internal | |
parent | eeb2a1a6e3c7a0c77ee6836f3103708cff4102ad (diff) | |
parent | 71e8ae01b84cdde56761436a52552a25b03d2a97 (diff) | |
download | go-tangerine-c88e4357240d8c92d7866cb805781b792e166ec2.tar.gz go-tangerine-c88e4357240d8c92d7866cb805781b792e166ec2.tar.zst go-tangerine-c88e4357240d8c92d7866cb805781b792e166ec2.zip |
Merge pull request #3088 from bas-vk/rpc-block-output
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 333c39965..53ea8d186 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 { |