@@ -6,11 +6,11 @@ import {IEngine} from "src/interfaces/IEngine.sol";
6
6
7
7
contract PayDebtTest is Bootstrap {
8
8
address public constant DEBT_ACTOR =
9
- address (0x325cd6b3CD80EDB102ac78848f5B127eB6DB13f3 );
9
+ address (0x3C704e28C8EfCC7aCa262031818001895595081D );
10
10
uint128 public constant ACCOUNT_ID =
11
- 170_141_183_460_469_231_731_687_303_715_884_105_747 ;
12
- uint256 public constant INITIAL_DEBT = 2_983_003_117_413_866_988 ;
13
- uint256 public constant BASE_BLOCK_NUMBER_WITH_DEBT = 23_805_461 ;
11
+ 170_141_183_460_469_231_731_687_303_715_884_108_662 ;
12
+ uint256 public constant INITIAL_DEBT = 10_718_269_732_520_293_989 ;
13
+ uint256 public constant BASE_BLOCK_NUMBER_WITH_DEBT = 23_922_058 ;
14
14
uint256 public constant USDC_WRAPPER_MAX_AMOUNT =
15
15
100_000_000_000_000_000_000_000_000 ;
16
16
@@ -41,7 +41,7 @@ contract PayDebtTest is Bootstrap {
41
41
/// (for the input _amount)
42
42
uint256 decimalsFactor = 10 ** (18 - USDC.decimals ());
43
43
uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor;
44
- assertEq (INITIAL_DEBT_IN_USDC, 2_983_003 );
44
+ assertEq (INITIAL_DEBT_IN_USDC, 10_718_269 );
45
45
46
46
/// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT)
47
47
/// ACCOUNT_ID has a debt value of INITIAL_DEBT
@@ -81,7 +81,7 @@ contract PayDebtTest is Bootstrap {
81
81
/// (for the input _amount)
82
82
uint256 decimalsFactor = 10 ** (18 - USDC.decimals ());
83
83
uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor;
84
- assertEq (INITIAL_DEBT_IN_USDC, 2_983_003 );
84
+ assertEq (INITIAL_DEBT_IN_USDC, 10_718_269 );
85
85
86
86
/// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT)
87
87
/// @dev ACCOUNT_ID has a debt value of INITIAL_DEBT
@@ -125,7 +125,7 @@ contract PayDebtTest is Bootstrap {
125
125
/// (for the input _amount)
126
126
uint256 decimalsFactor = 10 ** (18 - USDC.decimals ());
127
127
uint256 INITIAL_DEBT_IN_USDC = INITIAL_DEBT / decimalsFactor;
128
- assertEq (INITIAL_DEBT_IN_USDC, 2_983_003 );
128
+ assertEq (INITIAL_DEBT_IN_USDC, 10_718_269 );
129
129
130
130
/// @dev on this block (BASE_BLOCK_NUMBER_WITH_DEBT)
131
131
/// @dev ACCOUNT_ID has a debt value of INITIAL_DEBT
0 commit comments