From f632a9cfa78abf5642d9ee6cea651b9b3eaef099 Mon Sep 17 00:00:00 2001 From: Daniel Simon Date: Thu, 28 Nov 2024 17:15:34 +0700 Subject: [PATCH] chore: forge fmt --- src/interfaces/IGovernance.sol | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/interfaces/IGovernance.sol b/src/interfaces/IGovernance.sol index 1d2cefe..9104b51 100644 --- a/src/interfaces/IGovernance.sol +++ b/src/interfaces/IGovernance.sol @@ -17,7 +17,14 @@ interface IGovernance { event RegisterInitiative(address initiative, address registrant, uint256 atEpoch, bool hookSuccess); event UnregisterInitiative(address initiative, uint256 atEpoch, bool hookSuccess); - event AllocateLQTY(address indexed user, address indexed initiative, int256 deltaVoteLQTY, int256 deltaVetoLQTY, uint256 atEpoch, bool hookSuccess); + event AllocateLQTY( + address indexed user, + address indexed initiative, + int256 deltaVoteLQTY, + int256 deltaVetoLQTY, + uint256 atEpoch, + bool hookSuccess + ); event ClaimForInitiative(address indexed initiative, uint256 bold, uint256 forEpoch, bool hookSuccess); struct Configuration {