Skip to content

Commit

Permalink
renamed received with processed into SyncStatisticsHandler
Browse files Browse the repository at this point in the history
  • Loading branch information
sstanculeanu committed Oct 20, 2022
1 parent 929c00f commit 3facd9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions data/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ type MiniBlockInfo struct {
// SyncStatisticsHandler defines the methods for a component able to store the sync statistics for a trie
type SyncStatisticsHandler interface {
Reset()
AddNumReceived(value int)
AddNumProcessed(value int)
AddNumLarge(value int)
SetNumMissing(rootHash []byte, value int)
NumReceived() int
NumProcessed() int
NumLarge() int
NumMissing() int
IsInterfaceNil() bool
Expand Down

0 comments on commit 3facd9e

Please sign in to comment.