File tree Expand file tree Collapse file tree
transaction-pool-api/source Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -136,4 +136,4 @@ describe<{
136136 it . skip ( "should be ok with legacy wallets" , async ( { syncNode } ) => {
137137 // TODO
138138 } ) ;
139- } ) ;
139+ } ) ;
Original file line number Diff line number Diff line change @@ -9,11 +9,6 @@ import { Worker } from "./worker.js";
99
1010type PluginOptions = Record < string , any > ;
1111
12- // @ts -ignore
13- BigInt . prototype . toJSON = function ( ) {
14- const int = Number . parseInt ( this . toString ( ) ) ;
15- return int ?? this . toString ( ) ;
16- } ;
1712
1813const setupSyncNode = async ( dataDirectory : string ) : Promise < Contracts . Kernel . Application > => {
1914 const app = new Application ( ) ;
Original file line number Diff line number Diff line change @@ -10,12 +10,6 @@ import { Worker } from "./worker.js";
1010
1111type PluginOptions = Record < string , any > ;
1212
13- // @ts -ignore
14- BigInt . prototype . toJSON = function ( ) {
15- const int = Number . parseInt ( this . toString ( ) ) ;
16- return int ?? this . toString ( ) ;
17- } ;
18-
1913const setup = async ( ) : Promise < Contracts . Kernel . Application > => {
2014 const app = new Application ( ) ;
2115
You can’t perform that action at this time.
0 commit comments