Skip to content

Commit f074496

Browse files
committed
fix: remove debug timestamp code
1 parent 226bde7 commit f074496

File tree

1 file changed

+0
-21
lines changed

1 file changed

+0
-21
lines changed

packages/libs/contracts-sdk/test/fees/MorphoFeeForkTest.t.sol

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -90,27 +90,6 @@ contract FeeForkTest is Test {
9090
vm.startPrank(APP_USER_ALICE);
9191
underlyingERC20.approve(address(morphoPerfFeeFacet), depositAmount);
9292
console.log("approved USDC to morpho");
93-
94-
// debugging possible timestamp issue
95-
console.log("block.timestamp", block.timestamp);
96-
(
97-
uint128 totalSupplyAssets,
98-
uint128 totalSupplyShares,
99-
uint128 totalBorrowAssets,
100-
uint128 totalBorrowShares,
101-
uint128 lastUpdate,
102-
uint128 fee
103-
) = morpho.market(Morpho.Id.wrap(0x9103c3b4e834476c9a62ea009ba2c884ee42e94e6e314a26f04d312434191836));
104-
console.log("totalSupplyAssets", totalSupplyAssets);
105-
console.log("totalSupplyShares", totalSupplyShares);
106-
console.log("totalBorrowAssets", totalBorrowAssets);
107-
console.log("totalBorrowShares", totalBorrowShares);
108-
console.log("lastUpdate", lastUpdate);
109-
console.log("fee", fee);
110-
111-
uint256 diff = block.timestamp - lastUpdate;
112-
console.log("diff", diff);
113-
11493
morphoPerfFeeFacet.depositToMorpho(address(morphoVault), depositAmount);
11594
vm.stopPrank();
11695
console.log("deposited to morpho");

0 commit comments

Comments
 (0)