diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-11 05:12:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-11 17:39:33 +0800 |
commit | a2919b5e17197afcb689b8f4144f255a5872f85d (patch) | |
tree | 7d2adf6b51bd2b54d13b177ee39dd9366ffbebc8 /core/events.go | |
parent | 6674ea8d67012a8ad1227738c69b8997962fe141 (diff) | |
download | go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.gz go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.zst go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.zip |
core, eth, miner: improved tx removal & fatal error on db sync err
* core: Added GasPriceChange event
* eth: When one of the DB flush methods error a fatal error log message
is given. Hopefully this will prevent corrupted databases from
occuring.
* miner: remove transactions with low gas price. Closes #906, #903
Diffstat (limited to 'core/events.go')
-rw-r--r-- | core/events.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/events.go b/core/events.go index 3da668af5..1ea35c2f4 100644 --- a/core/events.go +++ b/core/events.go @@ -1,8 +1,10 @@ package core import ( - "github.com/ethereum/go-ethereum/core/types" + "math/big" + "github.com/ethereum/go-ethereum/core/state" + "github.com/ethereum/go-ethereum/core/types" ) // TxPreEvent is posted when a transaction enters the transaction pool. @@ -44,6 +46,8 @@ type ChainUncleEvent struct { type ChainHeadEvent struct{ Block *types.Block } +type GasPriceChanged struct{ Price *big.Int } + // Mining operation events type StartMining struct{} type TopMining struct{} |