Skip to content

Commit

Permalink
fix(og): N-02 - Remove payable in executeProposal (#4491)
Browse files Browse the repository at this point in the history
Signed-off-by: Reinis Martinsons <reinis@umaproject.org>
  • Loading branch information
Reinis-FRP committed Mar 22, 2023
1 parent f3ea7a6 commit f417256
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -299,7 +299,7 @@ contract OptimisticGovernor is OptimisticOracleV3CallbackRecipientInterface, Mod
* @notice Executes an approved proposal.
* @param transactions the transactions being executed. These must exactly match those that were proposed.
*/
function executeProposal(Transaction[] memory transactions) external payable nonReentrant {
function executeProposal(Transaction[] memory transactions) external nonReentrant {
// Recreate the proposal hash from the inputs and check that it matches the stored proposal hash.
bytes32 proposalHash = keccak256(abi.encode(transactions));
Expand Down

0 comments on commit f417256

Please sign in to comment.