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 11import  *  as  dotenv  from  'dotenv' ; 
22import  *  as  getopts  from  'getopts' ; 
3- import  *  as  bigint  from  'extra-bigint' ; 
3+ import  *  as  extra_bigint  from  'extra-bigint' ; 
44import  {  table  }  from  'table' ; 
55import  {  StacksCoreRpcClient  }  from  '../../src/core-rpc/client' ; 
66import  {  PgDataStore  }  from  '../../src/datastore/postgres-store' ; 
@@ -106,7 +106,7 @@ async function printTopAccountBalances(count: number, blockHeight: number) {
106106      item . address , 
107107      item . apiBalance , 
108108      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 ) ) ) , 
110110    ] ) ; 
111111  } ) ; 
112112  console . log ( table ( tabularData ) ) ; 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments