Skip to content

Commit 5d9034e

Browse files
committed
Keep only curent signer
1 parent 4db1f69 commit 5d9034e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
[submodule "lib/openzeppelin-contracts-upgradeable"]
1111
path = lib/openzeppelin-contracts-upgradeable
1212
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
13+
[submodule "lib/openzeppelin-contracts"]
14+
path = lib/openzeppelin-contracts
15+
url = https://github.com/OpenZeppelin/openzeppelin-contracts

lib/openzeppelin-contracts

Submodule openzeppelin-contracts added at acd4ff7

src/L1/system-contract/SystemConfig.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// SPDX-License-Identifier: MIT
22
pragma solidity =0.8.24;
33

4-
import "@openzeppelin/contracts/access/OwnableUpgradable.sol";
4+
import "@openzeppelin/contracts/access/Ownable.sol";
55

6-
contract SystemConfig is OwnableUpgradable {
6+
contract SystemConfig is Ownable {
77

88
address public currentSigner;
99

0 commit comments

Comments
 (0)