mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-03 09:17:38 +00:00
11 lines
135 B
Go
11 lines
135 B
Go
package ethchain
|
|
|
|
type TxEvent struct {
|
|
Type int // TxPre || TxPost
|
|
Tx *Transaction
|
|
}
|
|
|
|
type NewBlockEvent struct {
|
|
Block *Block
|
|
}
|