Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
faberto committed Jan 30, 2024
1 parent a5957de commit 41066b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion backend/src/blockchain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,7 @@ export async function getTransaction(transactionHash: string) {
*/
export async function getBlockHeight() {
const client = getClient();
const blockHeight: CallResult<number> = await client.blockchain.getBlockNumber();
const blockHeight: CallResult<number> =
await client.blockchain.getBlockNumber();
return blockHeight.data;
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
// https://nuxt.com/docs/guide/concepts/typescript
"extends": "./.nuxt/tsconfig.json"
"extends": "./.nuxt/tsconfig.json",
}

0 comments on commit 41066b2

Please sign in to comment.