a2919b5e17
* 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
22 lines
476 B
Go
22 lines
476 B
Go
package core
|
|
|
|
import (
|
|
"github.com/ethereum/go-ethereum/accounts"
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/event"
|
|
"github.com/ethereum/go-ethereum/p2p"
|
|
)
|
|
|
|
type Backend interface {
|
|
AccountManager() *accounts.Manager
|
|
BlockProcessor() *BlockProcessor
|
|
ChainManager() *ChainManager
|
|
TxPool() *TxPool
|
|
PeerCount() int
|
|
IsListening() bool
|
|
Peers() []*p2p.Peer
|
|
BlockDb() common.Database
|
|
StateDb() common.Database
|
|
EventMux() *event.TypeMux
|
|
}
|