-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add version + clean up with prettier
- Loading branch information
Showing
3 changed files
with
158 additions
and
111 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
// SPDX-License-Identifier: MPL-2.0 | ||
pragma solidity ^0.8.20; | ||
|
||
contract DebtEngineInvariantStorage { | ||
contract DebtEngineInvariantStorage { | ||
// CreditEvents | ||
bytes32 public constant CREDIT_EVENTS_MANAGER_ROLE = | ||
keccak256("CREDIT_EVENTS_MANAGER_ROLE"); | ||
keccak256("CREDIT_EVENTS_MANAGER_ROLE"); | ||
|
||
// DebtModule | ||
bytes32 public constant DEBT_MANAGER_ROLE = keccak256("DEBT_MANAGER_ROLE"); | ||
|
||
// custom error | ||
error AdminAddressZeroNotAllowed(); | ||
error InvalidInputLength(); | ||
|
||
} | ||
} |
Oops, something went wrong.