Commit abd752e2 authored by Maurelian's avatar Maurelian

feat(ctb): make vetoer and iniator getters virtual

This will facilitate reusability of this contract, as a future change will put the

these values in to another contract.
parent ef084933
......@@ -73,13 +73,13 @@ contract DelayedVetoable is Semver {
/// @notice Gets the initiator
/// @return Initiator address.
function initiator() external readOrHandle returns (address) {
function initiator() external virtual readOrHandle returns (address) {
return _initiator;
}
//// @notice Queries the vetoer address.
/// @return Vetoer address.
function vetoer() external readOrHandle returns (address) {
function vetoer() external virtual readOrHandle returns (address) {
return _vetoer;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment