Skip to content

Commit

Permalink
fix: add nativeUSDT to collateral assets (#434)
Browse files Browse the repository at this point in the history
  • Loading branch information
nvtaveras authored Jul 9, 2024
1 parent 7323a61 commit 3a53cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/fork-tests/BaseForkTest.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ contract BaseForkTest is Test, TokenHelpers, TestAsserts {
}
require(exchanges.length > 0, "No exchanges found");

// The number of collateral assets 4 is hardcoded here [CELO, AxelarUSDC, EUROC, NativeUSDC]
for (uint256 i = 0; i < 4; i++) {
// The number of collateral assets 5 is hardcoded here [CELO, AxelarUSDC, EUROC, NativeUSDC, NativeUSDT]
for (uint256 i = 0; i < 5; i++) {
address collateralAsset = reserve.collateralAssets(i);
mint(collateralAsset, address(reserve), Utils.toSubunits(25_000_000, collateralAsset));
console.log("Minting 25mil %s to reserve", IERC20Metadata(collateralAsset).symbol());
Expand Down

0 comments on commit 3a53cd2

Please sign in to comment.