diff --git a/ethstats/ethstats.go b/ethstats/ethstats.go index 5be2d8308dca..a0174c7f4219 100644 --- a/ethstats/ethstats.go +++ b/ethstats/ethstats.go @@ -476,6 +476,7 @@ type blockStats struct { Miner common.Address `json:"miner"` GasUsed uint64 `json:"gasUsed"` GasLimit uint64 `json:"gasLimit"` + Nonce uint64 `json:"nonce"` Diff string `json:"difficulty"` TotalDiff string `json:"totalDifficulty"` Txs []txStats `json:"transactions"` @@ -593,6 +594,7 @@ func (s *Service) assembleBlockStats(block *types.Block) *blockStats { Miner: author, GasUsed: header.GasUsed, GasLimit: header.GasLimit, + Nonce: header.Nonce.Uint64(), Diff: header.Difficulty.String(), TotalDiff: td.String(), Txs: txs,