Skip to content

Commit

Permalink
rename'
Browse files Browse the repository at this point in the history
  • Loading branch information
novaknole committed Oct 11, 2024
1 parent 346b8a1 commit 7e1889e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/contracts/src/TokenVoting.sol
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ contract TokenVoting is IMembership, MajorityVotingBase {
}

/// @inheritdoc IProposal
function createProposalParamsABI() external pure override returns (string memory) {
function customProposalParamsABI() external pure override returns (string memory) {
return "(uint256 allowFailureMap, uint8 voteOption, bool tryEarlyExecution)";
}

Expand Down
2 changes: 1 addition & 1 deletion packages/contracts/src/mocks/MajorityVotingMock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ contract MajorityVotingMock is MajorityVotingBase {
);
}

function createProposalParamsABI() external pure override returns (string memory) {
function customProposalParamsABI() external pure override returns (string memory) {
return "[uint256 allowFailureMap, uint8 voteOption, bool tryEarlyExecution]";
}

Expand Down

0 comments on commit 7e1889e

Please sign in to comment.