Skip to content

Commit

Permalink
Uncomment and change to allow more flex in balance amts
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmci committed Jan 11, 2024
1 parent 33cfbc7 commit f22d1f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions integration-tests/actions/ccip_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ var (
return fmt.Sprintf("%s-ethereum-geth", name)
}
// ApprovedAmountToRouter is the default amount which gets approved for router so that it can transfer token and use the fee token for fee payment
ApprovedAmountToRouter = new(big.Int).Mul(big.NewInt(1e18), big.NewInt(200))
ApprovedAmountToRouter = new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1))
ApprovedFeeAmountToRouter = new(big.Int).Mul(big.NewInt(int64(GasFeeMultiplier)), big.NewInt(1e5))
GasFeeMultiplier uint64 = 12e17
LinkToUSD = big.NewInt(6e18)
Expand Down Expand Up @@ -467,13 +467,13 @@ func (sourceCCIP *SourceCCIPModule) DeployContracts(lane *laneconfig.LaneConfig)
return errors.WithStack(err)
}

/*

err = sourceCCIP.Common.ApproveTokens()
if err != nil {
return err
}

*/


sourceCCIP.LoadContracts(lane)
// update transfer amount array length to be equal to the number of tokens
Expand Down

0 comments on commit f22d1f4

Please sign in to comment.