Skip to content

Commit

Permalink
Revert memory pointer to storage pointer (#4550)
Browse files Browse the repository at this point in the history
  • Loading branch information
frangio authored Aug 30, 2023
1 parent cd67894 commit 3266bca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ abstract contract GovernorVotesQuorumFraction is GovernorVotes {
uint256 length = _quorumNumeratorHistory._checkpoints.length;

// Optimistic search, check the latest checkpoint
Checkpoints.Checkpoint208 memory latest = _quorumNumeratorHistory._checkpoints[length - 1];
Checkpoints.Checkpoint208 storage latest = _quorumNumeratorHistory._checkpoints[length - 1];
uint48 latestKey = latest._key;
uint208 latestValue = latest._value;
if (latestKey <= timepoint) {
Expand Down

0 comments on commit 3266bca

Please sign in to comment.