File tree 2 files changed +6
-11
lines changed
2 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -1714,7 +1714,7 @@ export default class BitShares extends BlockchainAPI {
1714
1714
1715
1715
for ( let k = 0 ; k < idKeys . length ; k ++ ) {
1716
1716
const id = get ( op , idKeys [ k ] ) ;
1717
- if ( id && ! accountsToFetch . includes ( id ) ) {
1717
+ if ( id && typeof id === 'string' && ! accountsToFetch . includes ( id ) ) {
1718
1718
accountsToFetch . push ( id ) ;
1719
1719
}
1720
1720
}
Original file line number Diff line number Diff line change @@ -297,8 +297,7 @@ export default async function beautify(
297
297
_feeAsset . precision
298
298
) ,
299
299
} ,
300
- } ,
301
- ,
300
+ }
302
301
] ;
303
302
}
304
303
} else if ( opType == 5 ) {
@@ -433,8 +432,7 @@ export default async function beautify(
433
432
_feeAsset . precision
434
433
) ,
435
434
} ,
436
- } ,
437
- ,
435
+ }
438
436
] ;
439
437
}
440
438
} else if ( opType == 6 ) {
@@ -485,8 +483,7 @@ export default async function beautify(
485
483
_feeAsset . precision
486
484
) ,
487
485
} ,
488
- } ,
489
- ,
486
+ }
490
487
] ;
491
488
}
492
489
} else if ( opType == 7 ) {
@@ -2082,8 +2079,7 @@ export default async function beautify(
2082
2079
_feeAsset . precision
2083
2080
) ,
2084
2081
} ,
2085
- } ,
2086
- ,
2082
+ }
2087
2083
] ;
2088
2084
} else if ( opType == 32 ) {
2089
2085
// vesting_balance_create
@@ -2507,8 +2503,7 @@ export default async function beautify(
2507
2503
_feeAsset . precision
2508
2504
) ,
2509
2505
} ,
2510
- } ,
2511
- ,
2506
+ }
2512
2507
] ;
2513
2508
} else if ( opType == 41 ) {
2514
2509
// transfer_from_blind
You can’t perform that action at this time.
0 commit comments