From 334cc8ff948db248cdfa0a02dc6f68273157e1e1 Mon Sep 17 00:00:00 2001 From: Andrew Chiaramonte Date: Thu, 19 Dec 2024 14:07:35 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20update=20debt=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/PayDebt.t.sol | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/test/PayDebt.t.sol b/test/PayDebt.t.sol index b83b4156..b407c9d5 100644 --- a/test/PayDebt.t.sol +++ b/test/PayDebt.t.sol @@ -6,11 +6,11 @@ import {IEngine} from "src/interfaces/IEngine.sol"; contract PayDebtTest is Bootstrap { address public constant DEBT_ACTOR = - address(0x325cd6b3CD80EDB102ac78848f5B127eB6DB13f3); + address(0x3C704e28C8EfCC7aCa262031818001895595081D); uint128 public constant ACCOUNT_ID = - 170_141_183_460_469_231_731_687_303_715_884_105_747; - uint256 public constant INITIAL_DEBT = 2_983_003_117_413_866_988; - uint256 public constant BASE_BLOCK_NUMBER_WITH_DEBT = 23_805_461; + 170_141_183_460_469_231_731_687_303_715_884_108_662; + uint256 public constant INITIAL_DEBT = 10_718_269_732_520_293_989; + uint256 public constant BASE_BLOCK_NUMBER_WITH_DEBT = 23_922_058; uint256 public constant USDC_WRAPPER_MAX_AMOUNT = 100_000_000_000_000_000_000_000_000; @@ -41,7 +41,7 @@ contract PayDebtTest is Bootstrap { /// (for the input _amount) uint256 decimalsFactor = 10 ** (18 - USDC.decimals()); uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor; - assertEq(INITIAL_DEBT_IN_USDC, 2_983_003); + assertEq(INITIAL_DEBT_IN_USDC, 10_718_269); /// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT) /// ACCOUNT_ID has a debt value of INITIAL_DEBT @@ -81,7 +81,7 @@ contract PayDebtTest is Bootstrap { /// (for the input _amount) uint256 decimalsFactor = 10 ** (18 - USDC.decimals()); uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor; - assertEq(INITIAL_DEBT_IN_USDC, 2_983_003); + assertEq(INITIAL_DEBT_IN_USDC, 10_718_269); /// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT) /// @dev ACCOUNT_ID has a debt value of INITIAL_DEBT @@ -125,7 +125,7 @@ contract PayDebtTest is Bootstrap { /// (for the input _amount) uint256 decimalsFactor = 10 ** (18 - USDC.decimals()); uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor; - assertEq(INITIAL_DEBT_IN_USDC, 2_983_003); + assertEq(INITIAL_DEBT_IN_USDC, 10_718_269); /// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT) /// @dev ACCOUNT_ID has a debt value of INITIAL_DEBT