Merge pull request #7 from openrelayxyz/feature/v1.10.14_updates

Updates to Dwonloader.Progress to reflect geth v1.10.14 changes.
This commit is contained in:
Philip Morlier 2021-12-27 18:13:18 -05:00 committed by GitHub
commit 9048547fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {