-
Notifications
You must be signed in to change notification settings - Fork 39
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
feat: gas optimizations for position mover #391
base: main
Are you sure you want to change the base?
Conversation
|
||
require( | ||
loanData.state == BDaoDataTypes.LoanState.Active, | ||
"Loan not active" |
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.
suggestion : use Errors.xxx
|
||
(, borrowAmount) = lendPoolLoan.getLoanReserveBorrowAmount(loanId); | ||
tmpVar.borrowAmounts = new uint256[](loanIds.length); |
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.
could we cache "loanIds.length" as a uint value to save gas?
nextIndex = index + 1; | ||
if ( | ||
nextIndex < tokenIdsLength && | ||
tmpVar.nftAssets[index] == tmpVar.nftAssets[nextIndex] |
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.
Suggestion more readable : currentSupplyAsset == tmpVar.nftAssets[nextIndex]
Security Checklist
Make sure to think about each of these exploits in this PR.