@@ -35,8 +35,11 @@ contract HubVotePool is QueryResponse, Ownable {
35
35
/// @notice Thrown if a vote query is submitted with an unsupported query type.
36
36
error UnsupportedQueryType ();
37
37
38
+ /// @notice Emitted when the Governor is updated.
39
+ event HubGovernorUpdated (address oldGovernor , address newGovernor );
40
+
38
41
/// @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 );
40
43
41
44
/// @notice Emitted when a vote is recorded from a registered spoke vote aggregator.
42
45
event SpokeVoteCast (
@@ -68,9 +71,9 @@ contract HubVotePool is QueryResponse, Ownable {
68
71
mapping (uint8 queryType = > ISpokeVoteDecoder voteImpl ) public voteTypeDecoder;
69
72
70
73
constructor (address _core , address _hubGovernor , address _owner ) QueryResponse (_core) Ownable (_owner) {
71
- hubGovernor = IGovernor (_hubGovernor);
72
74
HubEvmSpokeVoteDecoder evmDecoder = new HubEvmSpokeVoteDecoder (_core, address (this ));
73
75
_registerQueryType (address (evmDecoder), QueryResponse.QT_ETH_CALL_WITH_FINALITY);
76
+ _setGovernor (_hubGovernor);
74
77
}
75
78
76
79
function getSpoke (uint16 _emitterChainId , uint256 _timepoint ) external view returns (bytes32 ) {
@@ -110,7 +113,7 @@ contract HubVotePool is QueryResponse, Ownable {
110
113
/// @param _newGovernor The address of the new hub governor.
111
114
function setGovernor (address _newGovernor ) external {
112
115
_checkOwner ();
113
- hubGovernor = IGovernor (_newGovernor);
116
+ _setGovernor (_newGovernor);
114
117
}
115
118
116
119
/// @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 {
168
171
}
169
172
170
173
function _registerQueryType (address _implementation , uint8 _queryType ) internal {
174
+ emit QueryTypeRegistered (_queryType, address (voteTypeDecoder[_queryType]), _implementation);
175
+
171
176
if (_implementation == address (0 )) {
172
177
delete voteTypeDecoder[_queryType];
173
178
return ;
174
179
}
175
180
bool _isValid = _implementation.supportsInterface (type (ISpokeVoteDecoder).interfaceId);
176
181
if (! _isValid) revert InvalidQueryVoteImpl ();
177
- emit QueryTypeRegistered (_queryType, address (voteTypeDecoder[_queryType]), _implementation);
178
182
voteTypeDecoder[_queryType] = ISpokeVoteDecoder (_implementation);
179
183
}
184
+
185
+ function _setGovernor (address _newGovernor ) internal {
186
+ emit HubGovernorUpdated (address (hubGovernor), _newGovernor);
187
+ hubGovernor = IGovernor (_newGovernor);
188
+ }
180
189
}
0 commit comments