Skip to content

Commit

Permalink
test(storage-workflow): should pass if core / diamond storage is chan…
Browse files Browse the repository at this point in the history
…ged without collision
  • Loading branch information
zugdev committed Oct 17, 2024
1 parent ad8b124 commit f8b5c3f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/contracts/src/dollar/core/ERC20Ubiquity.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ abstract contract ERC20Ubiquity is
ERC20PermitUpgradeable,
ERC20PausableUpgradeable
{
// this is a non-colliding change

/// @notice Token symbol
string private test; // _symbol
string private _symbol;

/// @notice Access control interface
IAccessControl public accessControl;
Expand Down
4 changes: 3 additions & 1 deletion packages/contracts/src/dollar/libraries/LibAppStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ import "./Constants.sol";

/// @notice Shared struct used as a storage in the `LibAppStorage` library
struct AppStorage {
// this is a non-colliding change

// reentrancy guard
uint256 test; //reentrancyStatus
uint256 reentrancyStatus;
// others
address dollarTokenAddress;
address creditNftAddress;
Expand Down

0 comments on commit f8b5c3f

Please sign in to comment.