type Progress interface {
// The function that should be called after progress has been made.
Progress()
// The function that should block until we have Progressed enough.
Advance()
}
A possible progress property would be that each peer has handled its incoming messages. The progress properties should be scheduled at given intervals. :grin:
A possible interface would be:
A possible progress property would be that each peer has handled its incoming messages. The progress properties should be scheduled at given intervals. :grin: