Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaszRozmej committed Oct 10, 2024
1 parent e1a7e38 commit dfbc8d5
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ protected override IHealthHintService CreateHealthHintService() =>

protected override IBlockProductionPolicy CreateBlockProductionPolicy() => AlwaysStartBlockProductionPolicy.Instance;

protected override ITxPool CreateTxPool() =>
api.Config<IOptimismConfig>().SequencerUrl is not null ? NullTxPool.Instance : base.CreateTxPool();
protected override ITxPool CreateTxPool(CodeInfoRepository codeInfoRepository) =>
api.Config<IOptimismConfig>().SequencerUrl is not null ? NullTxPool.Instance : base.CreateTxPool(codeInfoRepository);
}

0 comments on commit dfbc8d5

Please sign in to comment.