-
Notifications
You must be signed in to change notification settings - Fork 250
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
chore(audit)_: Added fail conditions for malformed string ints #6289
base: develop
Are you sure you want to change the base?
Conversation
Jenkins BuildsClick to see older builds (10)
|
3544dba
to
37cf705
Compare
37cf705
to
5c73ebb
Compare
Codecov ReportAttention: Patch coverage is
❌ Your patch check has failed because the patch coverage (25.00%) is below the target coverage (50.00%). You can increase the patch coverage or adjust the target coverage. Additional details and impacted files@@ Coverage Diff @@
## develop #6289 +/- ##
===========================================
- Coverage 60.35% 60.29% -0.07%
===========================================
Files 845 846 +1
Lines 111357 111370 +13
===========================================
- Hits 67211 67147 -64
- Misses 36310 36394 +84
+ Partials 7836 7829 -7
Flags with carried forward coverage won't be shown. Click here to find out more.
|
resolves https://github.com/status-im/least-authority-audit/issues/13
In a few places we've not handled the fail condition for
big.Int.SetString(string)
, this PR adds the handling as per the audit feedback. See the above link for more details.