2014-10-31 09:59:17 +00:00
|
|
|
package chain
|
2014-10-13 23:58:31 +00:00
|
|
|
|
2014-10-29 02:50:20 +00:00
|
|
|
// TxPreEvent is posted when a transaction enters the transaction pool.
|
|
|
|
type TxPreEvent struct{ Tx *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.
|
|
|
|
type TxPostEvent struct{ Tx *Transaction }
|
|
|
|
|
|
|
|
// NewBlockEvent is posted when a block has been imported.
|
|
|
|
type NewBlockEvent struct{ Block *Block }
|