diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-10-20 17:26:32 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:54 +0800 |
commit | b2470a70edcc1a834a863414c979832e1c3a89ba (patch) | |
tree | 67de5a3aa9aa31057c911ec740a9807b7e439948 /internal | |
parent | 28873ed1a5e07a106f3c5fadbe070570d81deead (diff) | |
download | dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar.gz dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar.bz2 dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar.lz dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar.xz dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.tar.zst dexon-b2470a70edcc1a834a863414c979832e1c3a89ba.zip |
core: included Dexcon metadata in block
Diffstat (limited to 'internal')
-rw-r--r-- | internal/ethapi/api.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 097e83e3c..edfc2e8b5 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -894,6 +894,8 @@ func RPCMarshalBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]inter "timestamp": hexutil.Uint64(head.Time), "transactionsRoot": head.TxHash, "receiptsRoot": head.ReceiptHash, + "randomness": hexutil.Bytes(head.Randomness), + "dexconMeta": hexutil.Bytes(head.DexconMeta), } if inclTx { |