Skip to content

Commit

Permalink
remove duplicate default set value
Browse files Browse the repository at this point in the history
  • Loading branch information
canonbrother committed Apr 30, 2021
1 parent ba53570 commit 255ef4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jellyfish-api-core/src/category/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export class Account {
verbose = true,
options: ListAccountOptions = { indexedAmounts: false, isMineOnly: false }
): Promise<Array<AccountResult<T, U>>> {
const { indexedAmounts = false, isMineOnly = false } = options
const { indexedAmounts, isMineOnly } = options
return await this.client.call('listaccounts', [pagination, verbose, indexedAmounts, isMineOnly], 'bignumber')
}

Expand Down

0 comments on commit 255ef4b

Please sign in to comment.