-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove fees (borrow and redeem) and SP logic for LQTY and front ends #61
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
@@ -0,0 +1,9 @@ | |||
// SPDX-License-Identifier: MIT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be in any of the test folders?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes fair point.
We now have contracts/src/test/TestContracts
for new test contracts exclusive to Foundry tests, and the original contracts/src/TestContracts
used by the Hardhat tests.
contracts/src/TroveManager.sol
Outdated
@@ -13,6 +13,7 @@ import "./Dependencies/LiquityBase.sol"; | |||
import "./Dependencies/Ownable.sol"; | |||
import "./Dependencies/CheckContract.sol"; | |||
|
|||
import "forge-std/console2.sol"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Github CI should warn, and we have plenty of time to remove it, but just in case.
contracts/src/test/basicOps.t.sol
Outdated
assertEq(boldToken.balanceOf(A), 1900e18); | ||
assertEq(stabilityPool.getCompoundedBoldDeposit(A), 100e18); | ||
|
||
// A tops up their SP deposit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
“withdraws”, right?
No description provided.