Skip to content

Commit

Permalink
another change
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Apr 6, 2024
1 parent af8b751 commit 5e9225f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration-tests/ccip-tests/actions/ccip_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -511,7 +511,7 @@ func (ccipModule *CCIPCommon) UpdateTokenPricesAtRegularInterval(ctx context.Con
case <-ticker.C:
// randomly choose an aggregator contract from slice of aggregators
randomIndex := rand.Intn(len(aggregators))
err := aggregators[randomIndex].UpdateRoundData(big.NewInt(int64(rand.Uint64())))
err := aggregators[randomIndex].UpdateRoundData(new(big.Int).Add(big.NewInt(1e18), big.NewInt(rand.Int63n(6e1000))))
if err != nil {
continue
}
Expand Down

0 comments on commit 5e9225f

Please sign in to comment.