diff --git a/contracts/strategies/examples/quadratic-voting/QVSimple.sol b/contracts/strategies/examples/quadratic-voting/QVSimple.sol index b74d0ad81..aeada6a09 100644 --- a/contracts/strategies/examples/quadratic-voting/QVSimple.sol +++ b/contracts/strategies/examples/quadratic-voting/QVSimple.sol @@ -167,7 +167,7 @@ contract QVSimple is BaseStrategy, RecipientsExtension, AllocatorsAllowlistExten // sum up the voice credits to allocate _voiceCreditsToAllocate += _amounts[i]; - emit Allocated(__recipients[i], _sender, _voiceCreditsToAllocate, _data); + emit Allocated(__recipients[i], _sender, _amounts[i], _data); } // check that the allocator has voice credits left to allocate