Skip to content

Commit 639c3b2

Browse files
committed
fix lint
1 parent 40a31cf commit 639c3b2

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

packages/cli/src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ export async function main(originalArgs: readonly string[]): Promise<void> {
135135
for (const source of args.init.map((arg) => arg.toString())) {
136136
if (args.debug) console.info(`Adding code from: '${source}' ...`);
137137
if (source.startsWith("https://")) {
138-
const response = await fetch(source).then(r => r.json());
138+
const response = await fetch(source).then((r) => r.json());
139139
init += response + "\n";
140140
} else {
141141
init += fs.readFileSync(source, "utf8") + "\n";

packages/faucet-client/src/faucetclient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class FaucetClient {
2020
};
2121

2222
try {
23-
await fetch(this.baseUrl + "/credit", {method: "POST", body: JSON.stringify(body)});
23+
await fetch(this.baseUrl + "/credit", { method: "POST", body: JSON.stringify(body) });
2424
} catch (error: any) {
2525
if (error.response) {
2626
// append response body to error message

packages/tendermint-rpc/src/rpcclients/http.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ function filterBadStatus(res: any): any {
77
return res;
88
}
99

10-
1110
/**
1211
* Helper to work around missing CORS support in Tendermint (https://github.com/tendermint/tendermint/pull/2800)
1312
*

0 commit comments

Comments
 (0)