Skip to content

Commit

Permalink
nits
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex6323 committed Dec 8, 2023
1 parent d13f493 commit 8673bd3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion bindings/nodejs/lib/client/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ export class Client {
/**
* Get the token supply.
*/
async getTokenSupply(): Promise<BigInt> {
async getTokenSupply(): Promise<bigint> {
const tokenSupply = (await this.getProtocolParameters()).tokenSupply;
if (tokenSupply !== undefined) {
return BigInt(tokenSupply);
Expand Down
1 change: 0 additions & 1 deletion bindings/nodejs/tests/types/block.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
// SPDX-License-Identifier: Apache-2.0

import 'reflect-metadata';
import { plainToInstance } from 'class-transformer';

import { expect, describe, it } from '@jest/globals';
import * as basic_block_tagged_data_payload_json from '../../../../sdk/tests/types/fixtures/basic_block_tagged_data_payload.json';
Expand Down

0 comments on commit 8673bd3

Please sign in to comment.