mirror of
https://github.com/arnaucube/go-ethereum.git
synced 2026-02-28 14:06:45 +01: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
|
|
}
|