-
Notifications
You must be signed in to change notification settings - Fork 1
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
Features: Adds cap to investment drawdowns. #92
base: main
Are you sure you want to change the base?
Features: Adds cap to investment drawdowns. #92
Conversation
This pull request has been linked to Shortcut Story #9318: Investment drawdowns: Add cap to smart contract. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #92 +/- ##
==========================================
+ Coverage 79.77% 80.01% +0.24%
==========================================
Files 56 56
Lines 1132 1136 +4
Branches 178 235 +57
==========================================
+ Hits 903 909 +6
+ Misses 229 227 -2 ☔ View full report in Codecov by Sentry. |
22854d8
to
1ed48db
Compare
@@ -14,7 +14,7 @@ import { abiStructToObj } from "../utils"; | |||
chai.use(solidity); | |||
chai.use(smock.matchers); | |||
|
|||
describe.only("MarketplaceFastDeploymentRequestsFacet", () => { | |||
describe("MarketplaceFastDeploymentRequestsFacet", () => { |
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.
We should probably add a check to the CI for this... easy to sneak this in then not test everything by mistake.
f3830f5
to
675321a
Compare
} | ||
|
||
/// @notice A version identifier for us to track what's deployed. | ||
uint16 public constant VERSION = 2; | ||
uint16 public constant VERSION = 3; |
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.
New feature... version bump.
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.
Frontend is going to run into some pain here. We should chat.
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.
Damn, ok. I'll ping you 👍
675321a
to
0744576
Compare
0744576
to
83732e2
Compare
This PR:
cap
to the creation params for a Crowdfund.isCapped
helper method to Crowdfund contract.