From 1892c8756b86c5d7ec5362d7371e41ad89c500ad Mon Sep 17 00:00:00 2001 From: John Feras Date: Thu, 12 Dec 2024 16:41:34 -0500 Subject: [PATCH] Fixed namespace ID in GovernorSettableFixedQuorumUpgradeable --- contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol b/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol index 64359d7..4034d57 100644 --- a/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol +++ b/contracts/extensions/GovernorSettableFixedQuorumUpgradeable.sol @@ -13,7 +13,7 @@ import {Checkpoints} from "@openzeppelin/contracts/utils/structs/Checkpoints.sol abstract contract GovernorSettableFixedQuorumUpgradeable is Initializable, GovernorUpgradeable { using Checkpoints for Checkpoints.Trace208; - /// @custom:storage-location erc7201:openzeppelin.storage.GovernorSettableFixedQuorum + /// @custom:storage-location erc7201:storage.GovernorSettableFixedQuorum struct GovernorSettableFixedQuorumStorage { Checkpoints.Trace208 _quorumCheckpoints; }