Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
spengrah committed Sep 6, 2024
1 parent b0ad84d commit 91d8ca5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion script/DeployPassthroughModule.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ contract Deploy is Script {
* never differs regardless of where its being compiled
* 2. The provided salt, `SALT`
*/
implementation = new PassthroughModule{ salt: SALT}(_version /* insert constructor args here */);
implementation = new PassthroughModule{ salt: SALT }(_version /* insert constructor args here */ );

vm.stopBroadcast();

Expand Down
1 change: 0 additions & 1 deletion src/PassthroughModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ contract PassthroughModule is HatsModule {
* 72 | CRITERION_HAT | uint256 | 32 | PassthroughModule |
* ----------------------------------------------------------------------+
*/

function CRITERION_HAT() public pure returns (uint256) {
return _getArgUint256(72);
}
Expand Down

0 comments on commit 91d8ca5

Please sign in to comment.