Skip to content

Commit

Permalink
[CCIP-2590] rebase fix
Browse files Browse the repository at this point in the history
  • Loading branch information
valerii-kabisov-cll committed Jul 10, 2024
1 parent 52ea539 commit d09b457
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/services/relay/evm/exec_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ func (s SrcExecProvider) Codec() commontypes.Codec {
}

func (s SrcExecProvider) NewCommitStoreReader(ctx context.Context, addr cciptypes.Address) (commitStoreReader cciptypes.CommitStoreReader, err error) {
commitStoreReader = NewIncompleteSourceCommitStoreReader(s.estimator, s.maxGasPrice)
commitStoreReader = NewIncompleteSourceCommitStoreReader(s.estimator, s.maxGasPrice, s.daConfigCache)
return
}

Expand Down Expand Up @@ -279,7 +279,7 @@ func (d DstExecProvider) Codec() commontypes.Codec {

func (d DstExecProvider) NewCommitStoreReader(ctx context.Context, addr cciptypes.Address) (commitStoreReader cciptypes.CommitStoreReader, err error) {
versionFinder := ccip.NewEvmVersionFinder()
commitStoreReader, err = NewIncompleteDestCommitStoreReader(d.lggr, versionFinder, addr, d.client, d.lp)
commitStoreReader, err = NewIncompleteDestCommitStoreReader(d.lggr, versionFinder, addr, d.client, d.lp, d.daConfigCache)
return
}

Expand Down

0 comments on commit d09b457

Please sign in to comment.