Skip to content

Commit

Permalink
fix: change each for map
Browse files Browse the repository at this point in the history
  • Loading branch information
shuffledex committed Dec 23, 2019
1 parent 3fbd074 commit 8e32aba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/procedures/IssueTokens.ts
Expand Up @@ -70,7 +70,7 @@ export class IssueTokens extends Procedure<IssueTokensProcedureArgs, Shareholder
} else {
const invalidAddresses: string[] = [];
const invalidCodes: RawTransferStatusCode[] = [];
await P.each(investors, async (to, i) => {
await P.map(investors, async (to, i) => {
const { statusCode } = await securityToken.canTransferFrom({
from: ZERO_ADDRESS,
to,
Expand Down

0 comments on commit 8e32aba

Please sign in to comment.