Skip to content

Commit 90369f1

Browse files
[autofix.ci] apply automated fixes
1 parent eacebe1 commit 90369f1

File tree

4 files changed

+154
-306
lines changed

4 files changed

+154
-306
lines changed

packages/ast/src/message-composer/message-composer.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,7 @@ const createWasmExecMethodMessageComposer = (
117117
),
118118
]),
119119
// return type
120-
t.tsTypeAnnotation(
121-
t.tsTypeReference(t.identifier('EncodeObject'))
122-
),
120+
t.tsTypeAnnotation(t.tsTypeReference(t.identifier('EncodeObject'))),
123121
false
124122
)
125123
);

packages/ts-codegen/src/helpers/baseClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ export function getSigningCosmWasmClient(signingClient: SigningClient): ISigning
9090
},
9191
};
9292
}
93-
`;
93+
`;

packages/ts-codegen/src/helpers/create-helpers.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,7 @@ export const createHelpers = (
3838
const files: BuilderFile[] = [];
3939

4040
// Always generate baseClient.ts since InterchainJS interfaces are needed by all clients
41-
files.push(
42-
write(
43-
input.outPath,
44-
'baseClient.ts',
45-
baseClient
46-
)
47-
);
41+
files.push(write(input.outPath, 'baseClient.ts', baseClient));
4842

4943
if (
5044
input.options?.useContractsHook?.enabled &&

0 commit comments

Comments
 (0)