From 7f46171958a5627c80d0b57937130e048244021f Mon Sep 17 00:00:00 2001 From: Alberto Granzotto Date: Tue, 14 Nov 2023 16:12:50 +0100 Subject: [PATCH] Fix inheritance --- contracts/Voting/Voting.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/Voting/Voting.sol b/contracts/Voting/Voting.sol index 8910f14..a40515b 100644 --- a/contracts/Voting/Voting.sol +++ b/contracts/Voting/Voting.sol @@ -9,7 +9,7 @@ import "./VotingSnapshot.sol"; * @title Voting * @notice The smart contract handles voting power delegation and manages voting snapshots. */ -contract Voting is VotingSnapshot, Initializable { +contract Voting is VotingSnapshot { /** * @notice Initializes the contract with given DAO roles. * @param daoRegistry Instance of a DAORoles contract.