From 6c59974ec1d5d2c31dc920bc53a24d6358255994 Mon Sep 17 00:00:00 2001 From: Jordi Pinyana Date: Mon, 18 Sep 2023 16:22:00 +0200 Subject: [PATCH] update contracts --- packages/contracts/src/VocdoniVoting.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/contracts/src/VocdoniVoting.sol b/packages/contracts/src/VocdoniVoting.sol index 521bc960..3cfc43f7 100644 --- a/packages/contracts/src/VocdoniVoting.sol +++ b/packages/contracts/src/VocdoniVoting.sol @@ -84,13 +84,13 @@ contract VocdoniVoting is IVocdoniVoting, PluginUUPSUpgradeable, VocdoniProposal } /// @notice A container for the proposal parameters. - /// @param censusBlock The block number used to generate the census of the proposal + /// @param censusBlock The block numbers used to generate the census of the proposal /// @param securityBlock Block number used for limiting contract usage when plugin settings are updated /// @param startDate The timestamp when the proposal starts. /// @param endDate The timestamp when the proposal ends. At this point the tally can be set. /// @param expirationDate The timestamp when the proposal expires. Proposal can't be executed after. struct ProposalParameters { - uint64 censusBlock; + uint64[] censusBlock; uint64 securityBlock; uint64 startDate; uint64 endDate;