aboutsummaryrefslogtreecommitdiffstats
path: root/consensus
diff options
context:
space:
mode:
authorBojie Wu <bojie@dexon.org>2018-10-09 13:28:45 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:23:39 +0800
commit46100ae76f9fb81aaf267101c3801af1d7adcb88 (patch)
tree4c7899aec7ba26d0fac3a3b52147d8ced0588c24 /consensus
parentf3b4175b04d7848a76ff1828fe1b586c4b31a46b (diff)
downloadgo-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar.gz
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar.bz2
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar.lz
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar.xz
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.tar.zst
go-tangerine-46100ae76f9fb81aaf267101c3801af1d7adcb88.zip
app: implement new insert blocks logic
Diffstat (limited to 'consensus')
-rw-r--r--consensus/dexcon/dexcon.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/consensus/dexcon/dexcon.go b/consensus/dexcon/dexcon.go
index 4017637b0..f7857c070 100644
--- a/consensus/dexcon/dexcon.go
+++ b/consensus/dexcon/dexcon.go
@@ -105,7 +105,8 @@ func (d *Dexcon) Prepare(chain consensus.ChainReader, header *types.Header) erro
// Finalize implements consensus.Engine, ensuring no uncles are set, nor block
// rewards given, and returns the final block.
func (d *Dexcon) Finalize(chain consensus.ChainReader, header *types.Header, state *state.StateDB, txs []*types.Transaction, uncles []*types.Header, receipts []*types.Receipt) (*types.Block, error) {
- blockReward := big.NewInt(100000000000)
+ // TODO(Bojie): remove it and get value from config
+ blockReward := big.NewInt(1e+18)
reward := new(big.Int).Div(blockReward, new(big.Int).SetUint64(uint64(d.config.NumChains)))
state.AddBalance(header.Coinbase, reward)
header.Root = state.IntermediateRoot(true)