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

12 lines
131 B
Go

package eth
import "container/list"
type PeerListEvent struct {
Peers *list.List
}
type ChainSyncEvent struct {
InSync bool
}