diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-03-27 13:17:22 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:50:05 +0800 |
commit | f500ef0a50518133ef679f7d3f9c41d8d11bcbf5 (patch) | |
tree | e19fd9bbfc66f82deb10b30fa0ff758de9e6fbf2 /consensus | |
parent | 23714b346a9d32e8bfcc53c119ccaadd937c92ea (diff) | |
download | dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar.gz dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar.bz2 dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar.lz dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar.xz dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.tar.zst dexon-f500ef0a50518133ef679f7d3f9c41d8d11bcbf5.zip |
core: fix finalize logic (#302)
Diffstat (limited to 'consensus')
-rw-r--r-- | consensus/dexcon/dexcon.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/consensus/dexcon/dexcon.go b/consensus/dexcon/dexcon.go index 0b6fa192f..4e474bfa3 100644 --- a/consensus/dexcon/dexcon.go +++ b/consensus/dexcon/dexcon.go @@ -208,8 +208,10 @@ func (d *Dexcon) Finalize(chain consensus.ChainReader, header *types.Header, sta gs.MiningHalved() } - // Record last proposed height. - gs.PutLastProposedHeight(header.Coinbase, header.Number) + if header.Coinbase != (common.Address{}) { + // Record last proposed height. + gs.PutLastProposedHeight(header.Coinbase, header.Number) + } header.Root = state.IntermediateRoot(true) return types.NewBlock(header, txs, uncles, receipts), nil |