2014-12-04 11:28:02 +02:00
|
|
|
package core
|
2014-10-14 02:58:31 +03:00
|
|
|
|
2015-03-19 17:19:54 +02:00
|
|
|
import (
|
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
"github.com/ethereum/go-ethereum/state"
|
|
|
|
)
|
2014-11-18 17:58:22 +02:00
|
|
|
|
2014-10-29 04:50:20 +02:00
|
|
|
// TxPreEvent is posted when a transaction enters the transaction pool.
|
2014-11-18 17:58:22 +02:00
|
|
|
type TxPreEvent struct{ Tx *types.Transaction }
|
2014-10-14 02:58:31 +03:00
|
|
|
|
2014-10-29 04:50:20 +02:00
|
|
|
// TxPostEvent is posted when a transaction has been processed.
|
2014-11-18 17:58:22 +02:00
|
|
|
type TxPostEvent struct{ Tx *types.Transaction }
|
2014-10-29 04:50:20 +02:00
|
|
|
|
|
|
|
// NewBlockEvent is posted when a block has been imported.
|
2014-11-18 17:58:22 +02:00
|
|
|
type NewBlockEvent struct{ Block *types.Block }
|
2014-12-14 20:18:24 +02:00
|
|
|
|
|
|
|
// NewMinedBlockEvent is posted when a block has been imported.
|
|
|
|
type NewMinedBlockEvent struct{ Block *types.Block }
|
2015-02-19 23:33:22 +02:00
|
|
|
|
|
|
|
// ChainSplit is posted when a new head is detected
|
2015-03-19 17:19:54 +02:00
|
|
|
type ChainSplitEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
Logs state.Logs
|
|
|
|
}
|
|
|
|
|
|
|
|
type ChainEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
Logs state.Logs
|
|
|
|
}
|
|
|
|
|
|
|
|
type ChainSideEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
Logs state.Logs
|
|
|
|
}
|
|
|
|
|
|
|
|
type PendingBlockEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
Logs state.Logs
|
|
|
|
}
|
2015-03-06 16:50:44 +02:00
|
|
|
|
2015-03-23 13:12:49 +02:00
|
|
|
type ChainUncleEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
}
|
|
|
|
|
2015-03-06 16:50:44 +02:00
|
|
|
type ChainHeadEvent struct{ Block *types.Block }
|
|
|
|
|
|
|
|
// Mining operation events
|
|
|
|
type StartMining struct{}
|
|
|
|
type TopMining struct{}
|