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