Skip to content

Commit

Permalink
Fixing constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
nagarev committed Dec 16, 2022
1 parent a0143af commit 3ef3d1f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,8 @@ private static ExecutionBlockRetriever createExecutionBlockRetriever(World world
new BlockFactory(rskSystemProperties.getActivationConfig()),
world.getBlockExecutor(),
new MinimumGasPriceCalculator(Coin.valueOf(miningConfig.getMinGasPriceTarget())),
new MinerUtils(new BlockTxSignatureCache(new ReceivedTxSignatureCache()))
new MinerUtils(),
world.getBlockTxSignatureCache()
);

return new ExecutionBlockRetriever(world.getBlockChain(), builder, mock(CompositeEthereumListener.class));
Expand Down

0 comments on commit 3ef3d1f

Please sign in to comment.