From 255ef4b38ec18c8291273d1d68b92a838fd93ec1 Mon Sep 17 00:00:00 2001 From: websterlcl Date: Fri, 30 Apr 2021 16:42:12 +0800 Subject: [PATCH] remove duplicate default set value --- packages/jellyfish-api-core/src/category/account.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/jellyfish-api-core/src/category/account.ts b/packages/jellyfish-api-core/src/category/account.ts index 477ed9214f..3ea3d49567 100644 --- a/packages/jellyfish-api-core/src/category/account.ts +++ b/packages/jellyfish-api-core/src/category/account.ts @@ -87,7 +87,7 @@ export class Account { verbose = true, options: ListAccountOptions = { indexedAmounts: false, isMineOnly: false } ): Promise>> { - const { indexedAmounts = false, isMineOnly = false } = options + const { indexedAmounts, isMineOnly } = options return await this.client.call('listaccounts', [pagination, verbose, indexedAmounts, isMineOnly], 'bignumber') }