mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 05:56:45 +01: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
|
|
}
|