@@ -441,6 +441,7 @@ func TestOpenInitializeExecutionDBIncompatibleStateScheme(t *testing.T) {
441441 // opening for the first time doesn't error
442442 executionDB , _ , blockchain , err := OpenInitializeExecutionDB (
443443 ctx ,
444+ true ,
444445 stack ,
445446 & nodeConfig ,
446447 new (big.Int ).SetUint64 (nodeConfig .Chain .ID ),
@@ -458,6 +459,7 @@ func TestOpenInitializeExecutionDBIncompatibleStateScheme(t *testing.T) {
458459 // opening for the second time doesn't error
459460 executionDB , _ , blockchain , err = OpenInitializeExecutionDB (
460461 ctx ,
462+ true ,
461463 stack ,
462464 & nodeConfig ,
463465 new (big.Int ).SetUint64 (nodeConfig .Chain .ID ),
@@ -476,6 +478,7 @@ func TestOpenInitializeExecutionDBIncompatibleStateScheme(t *testing.T) {
476478 nodeConfig .Execution .Caching .StateScheme = rawdb .HashScheme
477479 _ , _ , _ , err = OpenInitializeExecutionDB (
478480 ctx ,
481+ true ,
479482 stack ,
480483 & nodeConfig ,
481484 new (big.Int ).SetUint64 (nodeConfig .Chain .ID ),
@@ -704,6 +707,7 @@ func TestOpenInitializeExecutionDbEmptyInit(t *testing.T) {
704707
705708 executionDB , _ , blockchain , err := OpenInitializeExecutionDB (
706709 ctx ,
710+ true ,
707711 stack ,
708712 & nodeConfig ,
709713 new (big.Int ).SetUint64 (nodeConfig .Chain .ID ),
@@ -1059,6 +1063,7 @@ func getInitHelper(t *testing.T, ownerAdress string, chainID uint64, emptyState
10591063
10601064 executionDB , _ , _ , err := OpenInitializeExecutionDB (
10611065 ctx ,
1066+ true ,
10621067 stack ,
10631068 & nodeConfig ,
10641069 new (big.Int ).SetUint64 (nodeConfig .Chain .ID ),
0 commit comments