diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-11-17 13:18:34 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:18 +0800 |
commit | e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f (patch) | |
tree | bde9aad9a676129fdb92732ea7a9d92bdfeb7e8b /dex/config.go | |
parent | 10697136e876446a2807d9fd4799a0a5b9605e30 (diff) | |
download | go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar.gz go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar.bz2 go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar.lz go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar.xz go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.tar.zst go-tangerine-e5ebb174d61a6f7b0b9c6023b15c33a246b2c14f.zip |
core: more fix on light node synchronization (#32)
Fix gas calculation in governance contract.
Correctly register round height when processing pending blocks. We
should register the mapping when we get the pending block instead of
waiting for block confirmation.
Diffstat (limited to 'dex/config.go')
-rw-r--r-- | dex/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/config.go b/dex/config.go index 282de494f..b90a344c8 100644 --- a/dex/config.go +++ b/dex/config.go @@ -48,8 +48,8 @@ var DefaultConfig = Config{ }, BlockProposerEnabled: false, DefaultGasPrice: big.NewInt(params.GWei), - GasFloor: 8000000, - GasCeil: 8000000, + GasFloor: 80000000, + GasCeil: 80000000, GasLimitTolerance: 1000000, } |