Skip to content

Commit

Permalink
remove logger
Browse files Browse the repository at this point in the history
  • Loading branch information
0xnogo committed Nov 4, 2024
1 parent cfd4b89 commit 9e58567
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion execute/exectypes/costly_messages.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ func (c *CCIPMessageExecCostUSD18Calculator) MessageExecCostUSD18(

for _, msg := range messages {
executionCostUSD18 := c.computeExecutionCostUSD18(executionFee, msg)
dataAvailabilityCostUSD18 := computeDataAvailabilityCostUSD18(c.lggr, daFee, daConfig, msg)
dataAvailabilityCostUSD18 := computeDataAvailabilityCostUSD18(daFee, daConfig, msg)
totalCostUSD18 := new(big.Int).Add(executionCostUSD18, dataAvailabilityCostUSD18)
messageExecCosts[msg.Header.MessageID] = totalCostUSD18
}
Expand Down

0 comments on commit 9e58567

Please sign in to comment.