forked from cerc-io/plugeth
12 lines
131 B
Go
12 lines
131 B
Go
|
package eth
|
||
|
|
||
|
import "container/list"
|
||
|
|
||
|
type PeerListEvent struct {
|
||
|
Peers *list.List
|
||
|
}
|
||
|
|
||
|
type ChainSyncEvent struct {
|
||
|
InSync bool
|
||
|
}
|