events.go 131 B

1234567891011
  1. package eth
  2. import "container/list"
  3. type PeerListEvent struct {
  4. Peers *list.List
  5. }
  6. type ChainSyncEvent struct {
  7. InSync bool
  8. }