mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-10 06:35:54 +00:00
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
|
|
}
|