mirror of https://github.com/poanetwork/quorum.git
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
|
||
|
}
|