seeu
low
Use safeTransferOwnership instead of the transferOwnership method
In the contract, it was found the use of transferOwnership from @openzeppelin libraries.
It would be better to use safeTransferOwnership instead, which is a 2 structure.
- optimism/packages/contracts-bedrock/contracts/L1/SystemConfig.sol#L120
transferOwnership(_owner);
Manual Review
It is advised to use safeTransferOwnership instead of the transferOwnership method. See Ownable2Step.sol.