quorum/events.go

12 lines
131 B
Go
Raw Normal View History

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