Skip to content

Commit

Permalink
Adapting the Multisig tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed May 21, 2024
1 parent d9f9f46 commit 6904362
Show file tree
Hide file tree
Showing 3 changed files with 730 additions and 995 deletions.
2 changes: 1 addition & 1 deletion src/Multisig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ contract Multisig is IMultisig, IMembership, PluginUUPSUpgradeable, ProposalUpgr
/// @return True if the proposal vote is open, false otherwise.
function _isProposalOpen(Proposal storage proposal_) internal view returns (bool) {
uint64 currentTimestamp64 = block.timestamp.toUint64();
return !proposal_.executed && proposal_.parameters.expirationDate >= currentTimestamp64;
return !proposal_.executed && proposal_.parameters.expirationDate > currentTimestamp64;
}

/// @notice Internal function to update the plugin settings.
Expand Down
Loading

0 comments on commit 6904362

Please sign in to comment.