WTF-Solidity icon indicating copy to clipboard operation
WTF-Solidity copied to clipboard

[Improvement][45_Timelock] question regarding visibility setting of changeAdmin function

Open phoouze opened this issue 1 year ago • 0 comments

Description

In the Timelock contract, the changeAdmin function is currently set to public, and it uses the onlyTimelock modifier to ensure that only the contract itself can call this function. I believe it would be more appropriate to set the changeAdmin function to private.

/**
 * @dev 改变管理员地址,调用者必须是Timelock合约。
 */
function changeAdmin(address newAdmin) public onlyTimelock {
        admin = newAdmin;

        emit NewAdmin(newAdmin);
 }

Are you willing to submit a PR?(你愿意提交PR吗?)

  • [X] Yes I am willing to submit a PR!(是的我愿意)

phoouze avatar Oct 07 '24 14:10 phoouze