Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
makramkd committed Nov 28, 2024
1 parent 5775b57 commit 85531a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/smoke/ccip/ccip_fees_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func runFeeTokenTestCase(tc feeTokenTestCase) {
if feeTokenWrapper == nil {
receipt, err := srcChain.Client.TransactionReceipt(ctx, msgSentEvent.Raw.TxHash)
require.NoError(tc.t, err)
txCostWei := new(big.Int).Mul(big.NewInt(int64(receipt.GasUsed)), receipt.EffectiveGasPrice)
txCostWei := new(big.Int).Mul(new(big.Int).SetUint64(receipt.GasUsed), receipt.EffectiveGasPrice)
feeTokenBalanceBefore.Sub(feeTokenBalanceBefore, txCostWei)
}
require.Equal(
Expand Down

0 comments on commit 85531a1

Please sign in to comment.