Skip to content

Commit

Permalink
explicit ownership transfer
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Filippov <[email protected]>
  • Loading branch information
r0wdy1 and AllFi authored Dec 18, 2023
1 parent 36d65fb commit 96c1e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zkbob/manager/MPCGuard.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ contract MPCGuard is Ownable, CustomABIDecoder {

uint256 constant SIGNATURE_SIZE = 64;

constructor(address _operator, address _pool) {
constructor(address _operator, address _pool) Ownable() {
pool = _pool;
_setOperator(_operator);
}
Expand Down

0 comments on commit 96c1e5e

Please sign in to comment.