Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
escottalexander committed May 6, 2022
1 parent 82d10c4 commit 37c96bb
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/bitcore-wallet-client/src/lib/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2961,10 +2961,14 @@ export class API extends EventEmitter {
n: clonedSettings.n
});

accountKeyCredentialIndex.push({ credentials: c, key, opts: clonedSettings });
accountKeyCredentialIndex.push({
credentials: c,
key,
opts: clonedSettings
});
credBatch.push(c);
}
return { credentials: credBatch, accountKeyCredentialIndex};
return { credentials: credBatch, accountKeyCredentialIndex };
};

const getClientsFromWallets = (err, res) => {
Expand Down Expand Up @@ -3060,7 +3064,10 @@ export class API extends EventEmitter {
async.whilst(
() => mostRecentResults.every(x => x.success),
next => {
let { credentials, accountKeyCredentialIndex } = getNextBatch(k, wallet.opts);
let { credentials, accountKeyCredentialIndex } = getNextBatch(
k,
wallet.opts
);
client.bulkClient.getStatusAll(
credentials,
{
Expand Down

0 comments on commit 37c96bb

Please sign in to comment.