mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-22 11:31:02 +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
|
|
}
|