mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 22:26:30 +00:00
9 lines
278 B
Go
9 lines
278 B
Go
package traversal
|
|
|
|
type Stats struct {
|
|
// Count of (probably) distinct addresses we've sent traversal queries to. Accessed with atomic.
|
|
NumAddrsTried uint32
|
|
// Number of responses we received to queries related to this traversal. Accessed with atomic.
|
|
NumResponses uint32
|
|
}
|