@@ -68,12 +68,7 @@ contract SubgraphAvailabilityManager is Governed {
68
68
* @param oracleIndex Index of the oracle voting
69
69
* @param timestamp Timestamp of the vote
70
70
*/
71
- event OracleVote (
72
- bytes32 indexed subgraphDeploymentID ,
73
- bool deny ,
74
- uint256 indexed oracleIndex ,
75
- uint256 timestamp
76
- );
71
+ event OracleVote (bytes32 indexed subgraphDeploymentID , bool deny , uint256 indexed oracleIndex , uint256 timestamp );
77
72
78
73
// -- Modifiers --
79
74
@@ -155,11 +150,7 @@ contract SubgraphAvailabilityManager is Governed {
155
150
* @param _deny True to deny, false to allow
156
151
* @param _oracleIndex Index of the oracle voting
157
152
*/
158
- function vote (
159
- bytes32 _subgraphDeploymentID ,
160
- bool _deny ,
161
- uint256 _oracleIndex
162
- ) external onlyOracle (_oracleIndex) {
153
+ function vote (bytes32 _subgraphDeploymentID , bool _deny , uint256 _oracleIndex ) external onlyOracle (_oracleIndex) {
163
154
_vote (_subgraphDeploymentID, _deny, _oracleIndex);
164
155
}
165
156
@@ -190,11 +181,7 @@ contract SubgraphAvailabilityManager is Governed {
190
181
* @param _deny True to deny, false to allow
191
182
* @param _oracleIndex Index of the oracle voting
192
183
*/
193
- function _vote (
194
- bytes32 _subgraphDeploymentID ,
195
- bool _deny ,
196
- uint256 _oracleIndex
197
- ) private {
184
+ function _vote (bytes32 _subgraphDeploymentID , bool _deny , uint256 _oracleIndex ) private {
198
185
uint256 timestamp = block .timestamp ;
199
186
200
187
if (_deny) {
0 commit comments