aboutsummaryrefslogtreecommitdiffstats
path: root/internal
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-26 10:28:42 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 13:49:55 +0800
commit57f9413a15058bd067be537c22cd97a23b46be45 (patch)
tree34d64492914fcb5223b1a2aa5ee8312ba73151ba /internal
parent4440a1e67f317275c3b68201a5561bdbfe59165f (diff)
downloaddexon-57f9413a15058bd067be537c22cd97a23b46be45.tar
dexon-57f9413a15058bd067be537c22cd97a23b46be45.tar.gz
dexon-57f9413a15058bd067be537c22cd97a23b46be45.tar.bz2
dexon-57f9413a15058bd067be537c22cd97a23b46be45.tar.lz
dexon-57f9413a15058bd067be537c22cd97a23b46be45.tar.xz
dexon-57f9413a15058bd067be537c22cd97a23b46be45.tar.zst
dexon-57f9413a15058bd067be537c22cd97a23b46be45.zip
dex: return round in get block rpc output
Diffstat (limited to 'internal')
-rw-r--r--internal/ethapi/api.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go
index edfc2e8b5..f8af995f4 100644
--- a/internal/ethapi/api.go
+++ b/internal/ethapi/api.go
@@ -895,6 +895,7 @@ func RPCMarshalBlock(b *types.Block, inclTx bool, fullTx bool) (map[string]inter
"transactionsRoot": head.TxHash,
"receiptsRoot": head.ReceiptHash,
"randomness": hexutil.Bytes(head.Randomness),
+ "round": hexutil.Uint64(head.Round),
"dexconMeta": hexutil.Bytes(head.DexconMeta),
}