From 041a0de32225cbcde3c996b3d1b950a174da8c23 Mon Sep 17 00:00:00 2001 From: Adrian Dobrita Date: Fri, 6 Mar 2026 11:12:19 +0200 Subject: [PATCH] fix: update root hash handling in last executed block header --- process/sync/storageBootstrap/baseStorageBootstrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/sync/storageBootstrap/baseStorageBootstrapper.go b/process/sync/storageBootstrap/baseStorageBootstrapper.go index 0ca3b557dae..6651fedde0e 100644 --- a/process/sync/storageBootstrap/baseStorageBootstrapper.go +++ b/process/sync/storageBootstrap/baseStorageBootstrapper.go @@ -531,7 +531,7 @@ func (st *storageBootstrapper) setCurrentBlockInfo( // set also last executed block info and header // this will be useful at transition to Supernova with headers v3 - st.blkc.SetLastExecutedBlockHeaderAndRootHash(header, headerHash, header.GetRootHash()) + st.blkc.SetLastExecutedBlockHeaderAndRootHash(header, headerHash, rootHash) lastExecResHandler, err := common.GetOrCreateLastExecutionResultForPrevHeader(header, headerHash) if err != nil {