2015-07-07 03:54:22 +03:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 19:48:40 +03:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 03:54:22 +03:00
|
|
|
//
|
2015-07-23 19:35:11 +03:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 03:54:22 +03:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 19:48:40 +03:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 03:54:22 +03:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 19:48:40 +03:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 03:54:22 +03:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 19:48:40 +03:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 03:54:22 +03:00
|
|
|
|
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 (
|
2015-05-15 01:41:27 +03:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-05-11 00:12:18 +03:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-03-19 17:19:54 +02:00
|
|
|
)
|
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
|
|
|
|
2016-02-13 02:40:44 +02:00
|
|
|
// PendingLogsEvent is posted pre mining and notifies of pending logs.
|
|
|
|
type PendingLogsEvent struct {
|
2017-01-05 16:03:50 +03:00
|
|
|
Logs []*types.Log
|
2016-02-13 02:40:44 +02:00
|
|
|
}
|
|
|
|
|
2016-02-26 18:48:39 +02:00
|
|
|
// PendingStateEvent is posted pre mining and notifies of pending state changes.
|
|
|
|
type PendingStateEvent struct{}
|
|
|
|
|
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
|
|
|
|
2015-08-17 15:01:41 +03:00
|
|
|
// RemovedTransactionEvent is posted when a reorg happens
|
|
|
|
type RemovedTransactionEvent struct{ Txs types.Transactions }
|
|
|
|
|
2017-05-11 04:55:48 +03:00
|
|
|
// RemovedLogsEvent is posted when a reorg happens
|
2017-01-05 16:03:50 +03:00
|
|
|
type RemovedLogsEvent struct{ Logs []*types.Log }
|
2015-12-01 01:11:24 +02:00
|
|
|
|
2015-03-19 17:19:54 +02:00
|
|
|
type ChainEvent struct {
|
|
|
|
Block *types.Block
|
2015-05-15 01:41:27 +03:00
|
|
|
Hash common.Hash
|
2017-01-05 16:03:50 +03:00
|
|
|
Logs []*types.Log
|
2015-03-19 17:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type ChainSideEvent struct {
|
|
|
|
Block *types.Block
|
|
|
|
}
|
|
|
|
|
2015-03-06 16:50:44 +02:00
|
|
|
type ChainHeadEvent struct{ Block *types.Block }
|