Files
go-ethereum/ethchain/events.go
2014-10-16 18:50:48 +02:00

11 lines
135 B
Go

package ethchain
type TxEvent struct {
Type int // TxPre || TxPost
Tx *Transaction
}
type NewBlockEvent struct {
Block *Block
}