aboutsummaryrefslogblamecommitdiffstats
path: root/events.go
blob: 5fff1d8314e6322b3ebedb0af18a4a1b971e8003 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                            
package eth

import "container/list"

type PeerListEvent struct {
    Peers *list.List
}

type ChainSyncEvent struct {
    InSync bool
}