Skip to content

Commit 291b5e5

Browse files
committed
chore: lint fix
1 parent e0c3c2f commit 291b5e5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/transactions/src/fetch.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,10 +200,12 @@ export async function fetchFeeEstimateTransaction({
200200
const body = await response.text().catch(() => '');
201201

202202
if (body.includes('NoEstimateAvailable')) {
203-
let json: { reason_data?: { message?: string} } = {};
203+
let json: { reason_data?: { message?: string } } = {};
204204
try {
205205
json = JSON.parse(body);
206-
} catch (err) { // ignore }
206+
} catch (err) {
207+
// ignore
208+
}
207209
throw new NoEstimateAvailableError(json?.reason_data?.message ?? '');
208210
}
209211

0 commit comments

Comments
 (0)