We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MASK and POSITION are inconsistent with comments of ReservConfigurationMap Fields involved are
//bit 60: asset is paused //bit 61: borrowing in isolation mode is enabled //bit 62-63: reserved
The right one should be
//bit 60: asset is paused //bit 62: borrowing in isolation mode is enabled //bit 63: reserved
the MASK and POSITON
uint256 internal constant SILOED_BORROWING_MASK = 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBFFFFFFFFFFFFFFF; // prettier-ignore uint256 internal constant IS_PAUSED_START_BIT_POSITION = 60; uint256 internal constant SILOED_BORROWING_START_BIT_POSITION = 62; /// @dev bit 63 reserved
The text was updated successfully, but these errors were encountered:
I want to contribute. How do I get started?
Sorry, something went wrong.
No branches or pull requests
MASK and POSITION are inconsistent with comments of ReservConfigurationMap
Fields involved are
The right one should be
the MASK and POSITON
The text was updated successfully, but these errors were encountered: