diff options
author | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-03-08 20:25:54 +0800 |
---|---|---|
committer | Jhih-Ming Huang <jm.huang@cobinhood.com> | 2019-03-26 17:48:22 +0800 |
commit | 74c57f8f3d9e417636a0759055669f47728a799f (patch) | |
tree | 8b47c75ad045ed04f9e5bcfa3cfcc29a6072d285 /core/tx_pool.go | |
parent | 422626ae1dc0e46c6a209d90b0c895c9d4e4957d (diff) | |
download | dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.gz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.bz2 dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.lz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.xz dexon-74c57f8f3d9e417636a0759055669f47728a799f.tar.zst dexon-74c57f8f3d9e417636a0759055669f47728a799f.zip |
remove dexon/crypto/sha3 pkg.
Diffstat (limited to 'core/tx_pool.go')
-rw-r--r-- | core/tx_pool.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/tx_pool.go b/core/tx_pool.go index e7dbab0d2..df11224e7 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -30,7 +30,7 @@ import ( "github.com/dexon-foundation/dexon/common/prque" "github.com/dexon-foundation/dexon/core/state" "github.com/dexon-foundation/dexon/core/types" - "github.com/dexon-foundation/dexon/core/vm" + "github.com/dexon-foundation/dexon/core/vm/evm" "github.com/dexon-foundation/dexon/event" "github.com/dexon-foundation/dexon/log" "github.com/dexon-foundation/dexon/metrics" @@ -397,7 +397,7 @@ func (pool *TxPool) reset(oldHead, newHead *types.Header) { } else { round -= dexCore.ConfigRoundShift } - state := &vm.GovernanceState{StateDB: statedb} + state := &evm.GovernanceState{StateDB: statedb} height := state.RoundHeight(new(big.Int).SetUint64((round))).Uint64() block := pool.chain.GetBlockByNumber(height) if block == nil { @@ -409,7 +409,7 @@ func (pool *TxPool) reset(oldHead, newHead *types.Header) { log.Error("Failed to get txpool state for min gas price", "err", err) panic("cannot get state for new round's min gas price") } - govState := &vm.GovernanceState{StateDB: configState} + govState := &evm.GovernanceState{StateDB: configState} pool.setGovPrice(govState.MinGasPrice()) } |