Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
blockiosaurus committed Aug 8, 2024
1 parent 39c01ae commit 124a9eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
4 changes: 1 addition & 3 deletions clients/js/src/defaultGuards/assetGate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ export const assetGateGuardManifest: GuardManifest<
serializer: getAssetGateSerializer,
mintParser: (context, mintContext, args) => ({
data: new Uint8Array(),
remainingAccounts: [
{ publicKey: args.asset, isWritable: false },
],
remainingAccounts: [{ publicKey: args.asset, isWritable: false }],
}),
routeParser: noopParser,
};
Expand Down
2 changes: 1 addition & 1 deletion clients/js/src/defaultGuards/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ export * from './assetBurn';
export * from './assetMintLimit';
export * from './assetBurnMulti';
export * from './assetPaymentMulti';
export * from './assetGate';
export * from './assetGate';
2 changes: 1 addition & 1 deletion clients/js/src/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const mplCandyMachine = (): UmiPlugin => ({
assetMintLimitGuardManifest,
assetBurnMultiGuardManifest,
assetPaymentMultiGuardManifest,
assetGateGuardManifest,
assetGateGuardManifest
);
},
});
Expand Down
4 changes: 1 addition & 3 deletions clients/js/test/defaultGuards/assetGate.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import {
setComputeUnitLimit,
} from '@metaplex-foundation/mpl-toolbox';
import { setComputeUnitLimit } from '@metaplex-foundation/mpl-toolbox';
import {
generateSigner,
sol,
Expand Down

0 comments on commit 124a9eb

Please sign in to comment.