-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade Contracts to 0.8.6 * Remove CToken SafeMath, use Custom Errors * EnterExitMarkets.scen fixes * Borrow.scen fixes * Update CI and Dockerfile Solidity version * Increase memory available for CI * gasCosts * Remove *LocalVar structs * clean up proposalID * pull in punitive accounting * comments * audit remediations * further remediations * compilation fixes after master merge * Partial Fix: L03 - Gas inefficiencies * Partial Fix: L05 - Missing or erroneous docstrings and comments * Partial Fix: L08 - Unreachable code * var type * remove unused accrue interest custom errors * Partial Fix: N13 - Typos * Fix L07: Outdated Solidity versions * use solhint over solium * debug CI Co-authored-by: Kevin Britz <[email protected]>
- Loading branch information
Showing
157 changed files
with
4,043 additions
and
11,223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"extends": "solhint:recommended", | ||
"rules": { | ||
"quotes": ["error", "double"], | ||
"max-line-length": ["error", 200], | ||
"compiler-version": ["error", "^0.8.0"], | ||
"reason-string": ["warn", { "maxLength": 128 }], | ||
"not-rely-on-block-hash": "off", | ||
"not-rely-on-time": "off", | ||
"no-inline-assembly": "off", | ||
"avoid-low-level-calls": "off", | ||
"avoid-tx-origin": "off", | ||
"imports-on-top": "off" | ||
} | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.