aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-10-31 14:00:13 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commitc6e94db9e999211c8564969e113d43a907a55835 (patch)
tree04171d286c99594ee8eef1d63a3efd2a7d89fca7 /dex/app.go
parentad92c958334faeba42a3007f29f50c4f253411c1 (diff)
downloaddexon-c6e94db9e999211c8564969e113d43a907a55835.tar
dexon-c6e94db9e999211c8564969e113d43a907a55835.tar.gz
dexon-c6e94db9e999211c8564969e113d43a907a55835.tar.bz2
dexon-c6e94db9e999211c8564969e113d43a907a55835.tar.lz
dexon-c6e94db9e999211c8564969e113d43a907a55835.tar.xz
dexon-c6e94db9e999211c8564969e113d43a907a55835.tar.zst
dexon-c6e94db9e999211c8564969e113d43a907a55835.zip
dex: add block gas limit into governance
Diffstat (limited to 'dex/app.go')
-rw-r--r--dex/app.go9
1 files changed, 4 insertions, 5 deletions
diff --git a/dex/app.go b/dex/app.go
index a226aaa0c..b325f44d0 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -411,11 +411,10 @@ func (d *DexconApp) BlockDelivered(blockHash coreCommon.Hash, result coreTypes.F
}
newBlock := types.NewBlock(&types.Header{
- Number: new(big.Int).SetUint64(result.Height),
- Time: big.NewInt(result.Timestamp.Unix()),
- Coinbase: common.BytesToAddress(block.ProposerID.Bytes()),
- // TODO(bojie): fix it
- GasLimit: 8000000,
+ Number: new(big.Int).SetUint64(result.Height),
+ Time: big.NewInt(result.Timestamp.Unix()),
+ Coinbase: common.BytesToAddress(block.ProposerID.Bytes()),
+ GasLimit: d.gov.DexconConfiguration(block.Position.Round).BlockGasLimit,
Difficulty: big.NewInt(1),
Round: block.Position.Round,
DexconMeta: dexconMeta,