diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-17 03:07:27 +0800 |
---|---|---|
committer | Felix Lange <fjl@users.noreply.github.com> | 2017-05-17 03:07:27 +0800 |
commit | a2f23ca9b181fa4409fdee3076316f3127038b9b (patch) | |
tree | 4aff39e2ad7ff31562468830b7f3435188e1672c /core/events.go | |
parent | e20158176d2061ff95cdf022aa7113aa7c47a98e (diff) | |
download | go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.gz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.bz2 go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.lz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.xz go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.tar.zst go-tangerine-a2f23ca9b181fa4409fdee3076316f3127038b9b.zip |
cmd, core, eth, miner: remove txpool gas price limits (#14442)
Diffstat (limited to 'core/events.go')
-rw-r--r-- | core/events.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/events.go b/core/events.go index 106b52c80..ce1f5aebc 100644 --- a/core/events.go +++ b/core/events.go @@ -17,8 +17,6 @@ package core import ( - "math/big" - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" ) @@ -67,8 +65,6 @@ type ChainUncleEvent struct { type ChainHeadEvent struct{ Block *types.Block } -type GasPriceChanged struct{ Price *big.Int } - // Mining operation events type StartMining struct{} type TopMining struct{} |