aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBojie Wu <bojie@dexon.org>2018-10-15 14:43:54 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commit38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c (patch)
tree5f83130e63893e59fbd382e11860d4f587d11760
parent20b457a60fc10ede29dac646c6389b04b16248be (diff)
downloaddexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar.gz
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar.bz2
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar.lz
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar.xz
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.tar.zst
dexon-38221e713db2faadbdf5e1ce63a6c5f5ea1d8e2c.zip
app: add default block reward
-rw-r--r--consensus/dexcon/dexcon.go2
-rw-r--r--dex/backend.go2
-rw-r--r--params/config.go6
3 files changed, 6 insertions, 4 deletions
diff --git a/consensus/dexcon/dexcon.go b/consensus/dexcon/dexcon.go
index c3d42d599..c18e3cc6a 100644
--- a/consensus/dexcon/dexcon.go
+++ b/consensus/dexcon/dexcon.go
@@ -99,7 +99,7 @@ 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) {
- reward := new(big.Int).Div(d.config.MiningReward, new(big.Int).SetUint64(uint64(d.config.NumChains)))
+ reward := new(big.Int).Div(d.config.BlockReward, new(big.Int).SetUint64(uint64(d.config.NumChains)))
state.AddBalance(header.Coinbase, reward)
header.Root = state.IntermediateRoot(chain.Config().IsEIP158(header.Number))
diff --git a/dex/backend.go b/dex/backend.go
index 7702d3a3b..ca76eeed3 100644
--- a/dex/backend.go
+++ b/dex/backend.go
@@ -119,7 +119,7 @@ func New(ctx *node.ServiceContext, config *Config) (*Dexon, error) {
bloomRequests: make(chan chan *bloombits.Retrieval),
bloomIndexer: NewBloomIndexer(chainDb, params.BloomBitsBlocks, params.BloomConfirms),
blockdb: db,
- engine: dexcon.New(&params.DexconConfig{}),
+ engine: dexcon.New(chainConfig.Dexcon),
}
var (
diff --git a/params/config.go b/params/config.go
index 9f8d70868..b48a805d5 100644
--- a/params/config.go
+++ b/params/config.go
@@ -66,7 +66,9 @@ var (
EIP158Block: big.NewInt(0),
ByzantiumBlock: big.NewInt(0),
ConstantinopleBlock: nil,
- Dexcon: &DexconConfig{},
+ Dexcon: &DexconConfig{
+ BlockReward: new(big.Int).SetInt64(5e+18),
+ },
}
// TestnetTrustedCheckpoint contains the light client trusted checkpoint for the Ropsten test network.
@@ -197,7 +199,7 @@ type DexconConfig struct {
RoundInterval uint64 `json:"roundInterval"`
MinBlockInterval uint64 `json:"minBlockInterval"`
MaxBlockInterval uint64 `json:"maxBlockInterval"`
- MiningReward *big.Int `json:"miningReward"`
+ BlockReward *big.Int `json:"blockReward"`
}
// String implements the stringer interface, returning the consensus engine details.