Skip to content

Commit 4bbd5c1

Browse files
authored
Add missing events (#173)
* Add HubGovernorUpdated emit * Add ProposalExtended event
1 parent c7870e1 commit 4bbd5c1

4 files changed

+65
-5
lines changed

evm/src/HubProposalExtender.sol

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ contract HubProposalExtender is Ownable, IVoteExtender {
3030
/// @notice Emitted when the extension duration is updated.
3131
event ExtensionDurationUpdated(uint48 oldExtension, uint48 newExtension);
3232

33+
/// @notice Emitted when the proposal deadline has been extended.
34+
event ProposalExtended(uint256 proposalId, uint48 newDeadline);
35+
3336
/// @notice Emitted when the vote extender admin is updated.
3437
event VoteExtenderAdminUpdated(address oldAdmin, address newAdmin);
3538

@@ -81,7 +84,9 @@ contract HubProposalExtender is Ownable, IVoteExtender {
8184
IGovernor.ProposalState state = governor.state(_proposalId);
8285
if (state != IGovernor.ProposalState.Active) revert ProposalCannotBeExtended();
8386

84-
extendedDeadlines[_proposalId] = uint48(governor.proposalDeadline(_proposalId)) + extensionDuration;
87+
uint48 extendedDeadline = uint48(governor.proposalDeadline(_proposalId)) + extensionDuration;
88+
emit ProposalExtended(_proposalId, extendedDeadline);
89+
extendedDeadlines[_proposalId] = extendedDeadline;
8590
}
8691

8792
/// @notice Sets the proposal extension duration.

evm/src/HubVotePool.sol

+13-4
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@ contract HubVotePool is QueryResponse, Ownable {
3535
/// @notice Thrown if a vote query is submitted with an unsupported query type.
3636
error UnsupportedQueryType();
3737

38+
/// @notice Emitted when the Governor is updated.
39+
event HubGovernorUpdated(address oldGovernor, address newGovernor);
40+
3841
/// @notice Emitted when a new query type is registered.
39-
event QueryTypeRegistered(uint16 indexed targetChain, address oldQueryTypeImpl, address newQueryTypeImpl);
42+
event QueryTypeRegistered(uint8 indexed queryType, address oldQueryTypeImpl, address newQueryTypeImpl);
4043

4144
/// @notice Emitted when a vote is recorded from a registered spoke vote aggregator.
4245
event SpokeVoteCast(
@@ -68,9 +71,9 @@ contract HubVotePool is QueryResponse, Ownable {
6871
mapping(uint8 queryType => ISpokeVoteDecoder voteImpl) public voteTypeDecoder;
6972

7073
constructor(address _core, address _hubGovernor, address _owner) QueryResponse(_core) Ownable(_owner) {
71-
hubGovernor = IGovernor(_hubGovernor);
7274
HubEvmSpokeVoteDecoder evmDecoder = new HubEvmSpokeVoteDecoder(_core, address(this));
7375
_registerQueryType(address(evmDecoder), QueryResponse.QT_ETH_CALL_WITH_FINALITY);
76+
_setGovernor(_hubGovernor);
7477
}
7578

7679
function getSpoke(uint16 _emitterChainId, uint256 _timepoint) external view returns (bytes32) {
@@ -110,7 +113,7 @@ contract HubVotePool is QueryResponse, Ownable {
110113
/// @param _newGovernor The address of the new hub governor.
111114
function setGovernor(address _newGovernor) external {
112115
_checkOwner();
113-
hubGovernor = IGovernor(_newGovernor);
116+
_setGovernor(_newGovernor);
114117
}
115118

116119
/// @notice Processes cross chain votes from the spokes. Parses and verifies the Wormhole query response, then casts
@@ -168,13 +171,19 @@ contract HubVotePool is QueryResponse, Ownable {
168171
}
169172

170173
function _registerQueryType(address _implementation, uint8 _queryType) internal {
174+
emit QueryTypeRegistered(_queryType, address(voteTypeDecoder[_queryType]), _implementation);
175+
171176
if (_implementation == address(0)) {
172177
delete voteTypeDecoder[_queryType];
173178
return;
174179
}
175180
bool _isValid = _implementation.supportsInterface(type(ISpokeVoteDecoder).interfaceId);
176181
if (!_isValid) revert InvalidQueryVoteImpl();
177-
emit QueryTypeRegistered(_queryType, address(voteTypeDecoder[_queryType]), _implementation);
178182
voteTypeDecoder[_queryType] = ISpokeVoteDecoder(_implementation);
179183
}
184+
185+
function _setGovernor(address _newGovernor) internal {
186+
emit HubGovernorUpdated(address(hubGovernor), _newGovernor);
187+
hubGovernor = IGovernor(_newGovernor);
188+
}
180189
}

evm/test/HubProposalExtender.t.sol

+18
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,24 @@ contract ExtendProposal is HubProposalExtenderTest {
120120
assertEq(hubExtender.extendedDeadlines(_proposalId), voteEnd + hubExtender.extensionDuration());
121121
}
122122

123+
function testFuzz_EmitsProposalExtendedEvent(address _proposer) public {
124+
(, address[] memory delegates) = _setGovernorAndDelegates();
125+
vm.startPrank(delegates[0]);
126+
ProposalBuilder builder = _createProposal(abi.encodeWithSignature("setHubVotePool(address)", _proposer));
127+
128+
uint256 _proposalId = governor.propose(builder.targets(), builder.values(), builder.calldatas(), "Hi");
129+
vm.stopPrank();
130+
131+
uint256 voteEnd = governor.proposalDeadline(_proposalId);
132+
vm.warp(voteEnd - 1);
133+
vm.expectEmit();
134+
emit HubProposalExtender.ProposalExtended(_proposalId, uint48(voteEnd) + hubExtender.extensionDuration());
135+
vm.prank(whitelistedExtender);
136+
hubExtender.extendProposal(_proposalId);
137+
138+
assertEq(hubExtender.extendedDeadlines(_proposalId), voteEnd + hubExtender.extensionDuration());
139+
}
140+
123141
function testFuzz_RevertIf_CallerIsNotTheVoteExtenderAddress(address _caller, uint256 _proposalId) public {
124142
vm.assume(_caller != whitelistedExtender);
125143
vm.prank(_caller);

evm/test/HubVotePool.t.sol

+28
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,15 @@ contract Constructor is Test, AddressUtils {
145145
assertNotEq(address(hubVotePool.voteTypeDecoder(hubVotePool.QT_ETH_CALL_WITH_FINALITY())), address(0));
146146
}
147147

148+
function testFuzz_EmitsHubGovernorUpdatedEvent(address _core, address _hubGovernor, address _timelock) public {
149+
vm.assume(_core != address(0));
150+
vm.assume(_timelock != address(0));
151+
152+
vm.expectEmit();
153+
emit HubVotePool.HubGovernorUpdated(address(0), _hubGovernor);
154+
new HubVotePool(_core, _hubGovernor, _timelock);
155+
}
156+
148157
function testFuzz_RevertIf_CoreIsZeroAddress(address _hubGovernor, address _timelock) public {
149158
vm.expectRevert(EmptyWormholeAddress.selector);
150159
new HubVotePool(address(0), _hubGovernor, _timelock);
@@ -182,6 +191,18 @@ contract RegisterQueryType is HubVotePoolTest {
182191
assertEq(address(hubVotePool.voteTypeDecoder(_queryType)), address(0));
183192
}
184193

194+
function testFuzz_EmitesQueryRegisteredEventWhenSetToZeroAddress(uint8 _queryType) public {
195+
vm.startPrank(timelock);
196+
hubVotePool.registerQueryType(_queryType, address(hubCrossChainEvmVote));
197+
198+
vm.expectEmit();
199+
emit HubVotePool.QueryTypeRegistered(_queryType, address(hubCrossChainEvmVote), address(0));
200+
hubVotePool.registerQueryType(_queryType, address(0));
201+
vm.stopPrank();
202+
203+
assertEq(address(hubVotePool.voteTypeDecoder(_queryType)), address(0));
204+
}
205+
185206
function testFuzz_RevertIf_ERC165IsNotSupported(uint8 queryType) public {
186207
vm.startPrank(timelock);
187208
GovernorMock gov = new GovernorMock();
@@ -314,6 +335,13 @@ contract SetGovernor is HubVotePoolTest {
314335
assertEq(address(hubVotePool.hubGovernor()), _newGovernor);
315336
}
316337

338+
function testFuzz_EmitsHubGovernorUpdatedEvent(address _newGovernor) public {
339+
vm.expectEmit();
340+
emit HubVotePool.HubGovernorUpdated(address(hubVotePool.hubGovernor()), _newGovernor);
341+
vm.prank(timelock);
342+
hubVotePool.setGovernor(_newGovernor);
343+
}
344+
317345
function testFuzz_RevertIf_NotCalledByOwner(address _newGovernor, address _caller) public {
318346
vm.assume(_caller != timelock);
319347
vm.prank(_caller);

0 commit comments

Comments
 (0)