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