Skip to content

Commit 93d1603

Browse files
committed
fix: admin contract
1 parent 015b0ad commit 93d1603

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

contracts/Admin.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import "@openzeppelin/contracts/access/Ownable.sol";
99
@author ChainSafe Systems.
1010
*/
1111
contract Admin is Ownable {
12+
address public _MPCAddress;
13+
1214
event StartKeygen();
1315
event EndKeygen();
1416
event KeyRefresh(string hash);
@@ -49,4 +51,4 @@ contract Admin is Ownable {
4951
function refreshKey(string memory hash) external onlyOwner {
5052
emit KeyRefresh(hash);
5153
}
52-
}
54+
}

0 commit comments

Comments
 (0)