Hey guys! Does anyone know if when you use Upgradeable OpenZeppelin contracts anything changes when overriding a function?
// Restricting release of funds by PaymentSplitter
function release(address payable account) public override {
require(true);
super.release();
}
is throwing
Member "release" not found or not visible after argument-dependent lookup in type(contract super ContractName).