mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
core: remove unused events
This commit is contained in:
parent
949fec0808
commit
f50ee41c4a
1 changed files with 0 additions and 16 deletions
|
|
@ -26,9 +26,6 @@ import (
|
||||||
// TxPreEvent is posted when a transaction enters the transaction pool.
|
// TxPreEvent is posted when a transaction enters the transaction pool.
|
||||||
type TxPreEvent struct{ Tx *types.Transaction }
|
type TxPreEvent struct{ Tx *types.Transaction }
|
||||||
|
|
||||||
// TxPostEvent is posted when a transaction has been processed.
|
|
||||||
type TxPostEvent struct{ Tx *types.Transaction }
|
|
||||||
|
|
||||||
// PendingLogsEvent is posted pre mining and notifies of pending logs.
|
// PendingLogsEvent is posted pre mining and notifies of pending logs.
|
||||||
type PendingLogsEvent struct {
|
type PendingLogsEvent struct {
|
||||||
Logs []*types.Log
|
Logs []*types.Log
|
||||||
|
|
@ -62,19 +59,6 @@ type ChainSideEvent struct {
|
||||||
Block *types.Block
|
Block *types.Block
|
||||||
}
|
}
|
||||||
|
|
||||||
type PendingBlockEvent struct {
|
|
||||||
Block *types.Block
|
|
||||||
Logs []*types.Log
|
|
||||||
}
|
|
||||||
|
|
||||||
type ChainUncleEvent struct {
|
|
||||||
Block *types.Block
|
|
||||||
}
|
|
||||||
|
|
||||||
type ChainHeadEvent struct{ Block *types.Block }
|
type ChainHeadEvent struct{ Block *types.Block }
|
||||||
|
|
||||||
type GasPriceChanged struct{ Price *big.Int }
|
type GasPriceChanged struct{ Price *big.Int }
|
||||||
|
|
||||||
// Mining operation events
|
|
||||||
type StartMining struct{}
|
|
||||||
type TopMining struct{}
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue