I have a function called withdraw
in my code. I am using OpenZeppelin access control to limit access to approved managers. However for security reasons, I want two or more other admins to approve that transaction before the ether is sent to the owner's wallet. Is this possible?
Additional info:
- The
withdraw
method should be called by the manager but must be approved by the owner multisig - Currently, the attached code doesn't go through the multisig
- I have tried contract interaction on gnosis safe, but it fails with a message of "this transaction will fail"
function withdraw() onlyRole(managerRole) nonReentrant public returns(bool) {
(bool sent, ) = payable(msg.sender).call{value: getBalance()}("");
require(sent, "Ether not sent: transaction failed");
emit balanceWithdrawn(msg.sender, address(this).balance);
return true;
}