Skip to content

Commit f350e69

Browse files
committed
chore: fmt and bindings
1 parent cd23992 commit f350e69

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

pkg/bindings/BN254CertificateVerifier/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/bindings/CrossChainRegistry/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/bindings/ECDSACertificateVerifier/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/bindings/KeyRegistrar/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/bindings/OperatorTableUpdater/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/bindings/TaskMailbox/binding.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/contracts/interfaces/IKeyRegistrar.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ interface IKeyRegistrar is IKeyRegistrarErrors, IKeyRegistrarEvents, ISemVerMixi
177177
* @return g2Point The BN254 G2 public key
178178
* @dev Reverts for:
179179
* - InvalidCurveType: The operatorSet is not configured for BN254
180-
* @dev Returns empty points if the operator has not registered a key for the operatorSet. We
180+
* @dev Returns empty points if the operator has not registered a key for the operatorSet. We
181181
* recommend calling `isRegistered` first to check if the operator has a key registered
182182
*/
183183
function getBN254Key(
@@ -192,7 +192,7 @@ interface IKeyRegistrar is IKeyRegistrarErrors, IKeyRegistrarEvents, ISemVerMixi
192192
* @return pubkey The ECDSA public key in bytes format
193193
* @dev Reverts for:
194194
* - InvalidCurveType: The operatorSet is not configured for ECDSA
195-
* @dev Returns 0x0 if the operator has not registered a key for the operatorSet. We
195+
* @dev Returns 0x0 if the operator has not registered a key for the operatorSet. We
196196
* recommend calling `isRegistered` first to check if the operator has a key registered
197197
*/
198198
function getECDSAKey(OperatorSet memory operatorSet, address operator) external view returns (bytes memory);
@@ -204,7 +204,7 @@ interface IKeyRegistrar is IKeyRegistrarErrors, IKeyRegistrarEvents, ISemVerMixi
204204
* @return pubkey The ECDSA public key in address format
205205
* @dev Reverts for:
206206
* - InvalidCurveType: The operatorSet is not configured for ECDSA
207-
* @dev Returns 0x0 if the operator has not registered a key for the operatorSet. We
207+
* @dev Returns 0x0 if the operator has not registered a key for the operatorSet. We
208208
* recommend calling `isRegistered` first to check if the operator has a key registered
209209
*/
210210
function getECDSAAddress(OperatorSet memory operatorSet, address operator) external view returns (address);

0 commit comments

Comments
 (0)