-
Notifications
You must be signed in to change notification settings - Fork 32
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
2. refactor: increase coverage and refactor tests structure #46
Conversation
Slither reportTHIS CHECKLIST IS NOT COMPLETE. Use |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #46 +/- ##
==========================================
+ Coverage 82.00% 83.01% +1.00%
==========================================
Files 8 8
Lines 428 424 -4
Branches 114 113 -1
==========================================
+ Hits 351 352 +1
- Misses 25 26 +1
+ Partials 52 46 -6
|
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.
The PR looks good but I would only feel comfortable changing contract method names if we deploy and upgrade and include it in the PR. otherwise its a nightmare because our code doesnt reflect what is deployed and we can get crazy
b9b2cee
to
32ac296
Compare
b41be85
to
2f69616
Compare
2f69616
to
8cd0afb
Compare
src/wallet/KintoWallet.sol
Outdated
@@ -270,8 +273,13 @@ contract KintoWallet is Initializable, BaseAccount, TokenCallbackHandler, IKinto | |||
bytes32 hash = userOpHash.toEthSignedMessageHash(); | |||
// If there is only one signature and there is an app Key, check it | |||
address app = _getAppContract(userOp.callData); | |||
console.log("APP", app); |
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.
remove console logs
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.
Looks good after removing the console logs
No description provided.