From 41066b224cc25575bc54fcb004f42a63697185fd Mon Sep 17 00:00:00 2001 From: Faberto Date: Tue, 30 Jan 2024 14:09:40 +0100 Subject: [PATCH] prettier --- backend/src/blockchain.ts | 3 ++- tsconfig.json | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/src/blockchain.ts b/backend/src/blockchain.ts index 5df3b42..475d389 100644 --- a/backend/src/blockchain.ts +++ b/backend/src/blockchain.ts @@ -185,6 +185,7 @@ export async function getTransaction(transactionHash: string) { */ export async function getBlockHeight() { const client = getClient(); - const blockHeight: CallResult = await client.blockchain.getBlockNumber(); + const blockHeight: CallResult = + await client.blockchain.getBlockNumber(); return blockHeight.data; } diff --git a/tsconfig.json b/tsconfig.json index a746f2a..a994a26 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,4 @@ { // https://nuxt.com/docs/guide/concepts/typescript - "extends": "./.nuxt/tsconfig.json" + "extends": "./.nuxt/tsconfig.json", }