mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
11 lines
131 B
Go
11 lines
131 B
Go
package eth
|
|
|
|
import "container/list"
|
|
|
|
type PeerListEvent struct {
|
|
Peers *list.List
|
|
}
|
|
|
|
type ChainSyncEvent struct {
|
|
InSync bool
|
|
}
|