forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
409 B
13 lines
409 B
10 years ago
|
package core
|
||
10 years ago
|
|
||
10 years ago
|
import "github.com/ethereum/go-ethereum/core/types"
|
||
10 years ago
|
|
||
10 years ago
|
// TxPreEvent is posted when a transaction enters the transaction pool.
|
||
10 years ago
|
type TxPreEvent struct{ Tx *types.Transaction }
|
||
10 years ago
|
|
||
10 years ago
|
// TxPostEvent is posted when a transaction has been processed.
|
||
10 years ago
|
type TxPostEvent struct{ Tx *types.Transaction }
|
||
10 years ago
|
|
||
|
// NewBlockEvent is posted when a block has been imported.
|
||
10 years ago
|
type NewBlockEvent struct{ Block *types.Block }
|