Skip to content

Commit 5a42159

Browse files
committed
Improved owner functionality
1 parent 7a1a125 commit 5a42159

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/access/OwnerTwoSteps/LibOwnerTwoSteps.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ library LibERC173TwoSteps {
1616
/// @notice Thrown when attempting to initialize the contract more than once.
1717
error OwnableAlreadyInitialized();
1818

19-
bytes32 constant STORAGE_POSITION = keccak256("compose.erc173twosteps");
19+
bytes32 constant STORAGE_POSITION = keccak256("compose.owner");
2020

2121
/// @custom:storage-location erc8042:compose.erc173
2222
struct ERC173TwoStepsStorage {

src/access/OwnerTwoSteps/OwnerTwoSteps.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ contract OwnerTwoStepsFacet {
1313
/// @notice Thrown when attempting to initialize the contract more than once.
1414
error OwnerAlreadyInitialized();
1515

16-
bytes32 constant STORAGE_POSITION = keccak256("compose.ownertwosteps");
16+
bytes32 constant STORAGE_POSITION = keccak256("compose.owner");
1717

1818
/// @custom:storage-location erc8042:compose.ownertwosteps
1919
struct OwnerTwoStepsStorage {

0 commit comments

Comments
 (0)