Skip to content

Commit de1799f

Browse files
committed
chore: forge fmt
1 parent 9452a63 commit de1799f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

packages/libs/contracts-sdk/contracts/facets/VincentUserFacet.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,8 @@ contract VincentUserFacet is VincentBase {
342342

343343
mapping(bytes32 => bytes) storage abilityPolicyParameterValues = us_.agentPkpTokenIdToAgentStorage[
344344
pkpTokenId
345-
].abilityPolicyParameterValues[appId][appVersion][hashedAbilityIpfsCid];
345+
]
346+
.abilityPolicyParameterValues[appId][appVersion][hashedAbilityIpfsCid];
346347

347348
// Step 4: Iterate through each policy associated with the ability.
348349
for (uint256 j = 0; j < policyCount; j++) {

packages/libs/contracts-sdk/script/DeployFeeDiamond.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ contract DeployFeeDiamond is Script {
9090
cuts[6] = contractToFacetCutAdd("AerodromeSwapFeeFacet", address(aerodromeSwapFeeFacet));
9191

9292
// Deploy the Diamond with the diamondCut facet and all other facets in one transaction
93-
Fee diamond = new Fee{
94-
salt: create2Salt
95-
}(cuts, FeeArgs({owner: deployerAddress, init: address(0), initCalldata: bytes("")}));
93+
Fee diamond = new Fee{salt: create2Salt}(
94+
cuts, FeeArgs({owner: deployerAddress, init: address(0), initCalldata: bytes("")})
95+
);
9696

9797
// Stop broadcasting transactions
9898
vm.stopBroadcast();

0 commit comments

Comments
 (0)