Skip to content

Commit 7b0c1db

Browse files
authored
Merge pull request #5 from kleros/review/MerlinEgalite
changeController visibility
2 parents e95f3ac + f2a7ab3 commit 7b0c1db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/kleros/xKlerosLiquid.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* https://contributing.kleros.io/smart-contract-workflow
33
* @authors: [@fnanni-0]
4-
* @reviewers: [@shalzz, @unknownunknown1]
4+
* @reviewers: [@shalzz, @unknownunknown1, @MerlinEgalite]
55
* @auditors: []
66
* @bounties: []
77
* @deployments: []

contracts/tokens/WrappedPinakion.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* https://contributing.kleros.io/smart-contract-workflow
33
* @authors: [@fnanni-0]
4-
* @reviewers: [@unknownunknown1]
4+
* @reviewers: [@unknownunknown1, @MerlinEgalite]
55
* @auditors: []
66
* @bounties: []
77
* @deployments: []
@@ -95,7 +95,7 @@ contract WrappedPinakion is Initializable {
9595
/** @dev Changes `controller` to `_controller`.
9696
* @param _controller The new controller of the contract
9797
*/
98-
function changeController(address _controller) public onlyController {
98+
function changeController(address _controller) external onlyController {
9999
controller = _controller;
100100
}
101101

0 commit comments

Comments
 (0)