Updates to Dwonloader.Progress to reflect geth v1.10.14 changes.

This commit is contained in:
philip-morlier 2021-12-27 15:10:33 -08:00
parent 0ceb118544
commit d395f304f2

View File

@ -142,6 +142,18 @@ type Progress interface {
HighestBlock() uint64 HighestBlock() uint64
PulledStates() uint64 PulledStates() uint64
KnownStates() uint64 KnownStates() uint64
SyncedAccounts() uint64
SyncedAccountBytes() uint64
SyncedBytecodes() uint64
SyncedBytecodeBytes() uint64
SyncedStorage() uint64
SyncedStorageBytes() uint64
HealedTrienodes() uint64
HealedTrienodeBytes() uint64
HealedBytecodes() uint64
HealedBytecodeBytes() uint64
HealingTrienodes() uint64
HealingBytecode() uint64
} }
type Node interface { type Node interface {