aboutsummaryrefslogtreecommitdiffstats
path: root/internal/ethapi
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-10-07 00:32:27 +0800
committerGitHub <noreply@github.com>2016-10-07 00:32:27 +0800
commitc88e4357240d8c92d7866cb805781b792e166ec2 (patch)
treeef56d126a34a8801f6c716d7eae2a2e04122146f /internal/ethapi
parenteeb2a1a6e3c7a0c77ee6836f3103708cff4102ad (diff)
parent71e8ae01b84cdde56761436a52552a25b03d2a97 (diff)
downloaddexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar.gz
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar.bz2
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar.lz
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar.xz
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.tar.zst
dexon-c88e4357240d8c92d7866cb805781b792e166ec2.zip
Merge pull request #3088 from bas-vk/rpc-block-output
core/types: renamed receiptRoot to receiptsRoot
Diffstat (limited to 'internal/ethapi')
-rw-r--r--internal/ethapi/api.go2
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 {