Skip to content

Commit

Permalink
Style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
vgrichina committed Nov 20, 2020
1 parent 777229d commit 39854c8
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,13 @@ export class Account {
block_id: blockId,
finality: blockId ? undefined : finality || 'optimistic',
account_id: this.accountId,
prefix_base64: Buffer.from(prefix,).toString('base64')
prefix_base64: Buffer.from(prefix).toString('base64')
});

return values.map(({key, value}) => ({ key: Buffer.from(key, 'base64'), value: Buffer.from(value, 'base64')}))
return values.map(({key, value}) => ({
key: Buffer.from(key, 'base64'),
value: Buffer.from(value, 'base64')
}))
}

/**
Expand Down

0 comments on commit 39854c8

Please sign in to comment.