File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import * as dotenv from 'dotenv' ;
2
2
import * as getopts from 'getopts' ;
3
- import * as bigint from 'extra-bigint' ;
3
+ import * as extra_bigint from 'extra-bigint' ;
4
4
import { table } from 'table' ;
5
5
import { StacksCoreRpcClient } from '../../src/core-rpc/client' ;
6
6
import { PgDataStore } from '../../src/datastore/postgres-store' ;
@@ -106,7 +106,7 @@ async function printTopAccountBalances(count: number, blockHeight: number) {
106
106
item . address ,
107
107
item . apiBalance ,
108
108
item . nodeBalance ,
109
- bigint . abs ( ( item . apiBalance ?? BigInt ( 0 ) ) - ( item . nodeBalance ?? BigInt ( 0 ) ) ) ,
109
+ extra_bigint . abs ( ( item . apiBalance ?? BigInt ( 0 ) ) - ( item . nodeBalance ?? BigInt ( 0 ) ) ) ,
110
110
] ) ;
111
111
} ) ;
112
112
console . log ( table ( tabularData ) ) ;
You can’t perform that action at this time.
0 commit comments