From 0621ead5b6d3f8a71882328cd1e0bca440380fed Mon Sep 17 00:00:00 2001 From: BeniaminDrasovean Date: Tue, 18 Oct 2022 16:22:48 +0300 Subject: [PATCH] return trie depth on RetrieveValue() --- data/interface.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/interface.go b/data/interface.go index e76c1fcc2..4f3857098 100644 --- a/data/interface.go +++ b/data/interface.go @@ -368,7 +368,7 @@ type TransactionWithFeeHandler interface { // UserAccountHandler models a user account type UserAccountHandler interface { - RetrieveValue(key []byte) ([]byte, error) + RetrieveValue(key []byte) ([]byte, uint32, error) GetBalance() *big.Int GetNonce() uint64 AddressBytes() []byte