Skip to content

Commit

Permalink
fix Benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
yerke26 committed Oct 20, 2024
1 parent f6c8001 commit 4e6fea9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Nethermind/Ethereum.Test.Base/BlockchainTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected async Task<EthereumTestResult> RunTest(BlockchainTest test, Stopwatch?
stateProvider,
receiptStorage,
transactionProcessor,
new BeaconBlockRootHandler(transactionProcessor),
new BeaconBlockRootHandler(transactionProcessor, stateProvider),
new BlockhashStore(specProvider, stateProvider),
_logManager);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ TransactionProcessor transactionProcessor
stateProvider,
NullReceiptStorage.Instance,
transactionProcessor,
new BeaconBlockRootHandler(transactionProcessor),
new BeaconBlockRootHandler(transactionProcessor, stateProvider),
new BlockhashStore(specProvider, stateProvider),
LimboLogs.Instance);

Expand Down

0 comments on commit 4e6fea9

Please sign in to comment.