diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-30 14:03:22 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:55 +0800 |
commit | 1414bd9c465c28c89bcb1311a6bbbfe014edf55b (patch) | |
tree | 00bed8d862a712e2942f2f0a5b09681aa03427dd /internal | |
parent | afb51ec1fb001544c3005a0e7e323f1e123c8138 (diff) | |
download | dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar.gz dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar.bz2 dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar.lz dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar.xz dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.tar.zst dexon-1414bd9c465c28c89bcb1311a6bbbfe014edf55b.zip |
core: fix blockReward serialization
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 93906f35f..8c950d5cf 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -894,10 +894,10 @@ func RPCMarshalBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]inter "timestamp": hexutil.Uint64(head.Time), "transactionsRoot": head.TxHash, "receiptsRoot": head.ReceiptHash, + "reward": (*hexutil.Big)(head.Reward), "randomness": hexutil.Bytes(head.Randomness), "round": hexutil.Uint64(head.Round), "dexconMeta": hexutil.Bytes(head.DexconMeta), - "blockReward": (*hexutil.Big)(head.BlockReward), } if inclTx { |