From d395f304f218afc1c26848c7eacf2d29e18ea64d Mon Sep 17 00:00:00 2001 From: philip-morlier Date: Mon, 27 Dec 2021 15:10:33 -0800 Subject: [PATCH] Updates to Dwonloader.Progress to reflect geth v1.10.14 changes. --- core/interface.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/core/interface.go b/core/interface.go index b6b25f9..1e856f7 100644 --- a/core/interface.go +++ b/core/interface.go @@ -142,6 +142,18 @@ type Progress interface { HighestBlock() uint64 PulledStates() 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 {