Open
Description
I've been working on a multi-governor, I've had to pretty much duplicate the entire interface due to one small parameter change
I need an additional parameter to accept data during the propose, currently i've hardcoded this
function propose(
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
string memory description,
VoteChoices[] memory voteChoices
)
But if the new version were to accept a blob of bytes, the interface would be more versatile a it can include things that is related to the proposal and but not specifically for execution
function propose(
address[] memory targets,
uint256[] memory values,
bytes[] memory calldatas,
string memory description,
bytes memory additionalData
)