Skip to content

Commit

Permalink
use double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
cfaur09 committed Oct 23, 2024
1 parent 40fcdc6 commit 28c68b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/indexer/elastic/elastic.indexer.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ export class ElasticIndexerService implements IndexerInterface {
async getAllFungibleTokens(): Promise<any[]> {
const query = ElasticQuery.create()
.withMustMatchCondition('type', TokenType.FungibleESDT)
.withFields(["name", "type", "currentOwner", "numDecimals", "properties", "timestamp", 'ownersHistory'])
.withFields(["name", "type", "currentOwner", "numDecimals", "properties", "timestamp", "ownersHistory"])
.withMustNotExistCondition('identifier')
.withPagination({ from: 0, size: 1000 });

Expand Down

0 comments on commit 28c68b1

Please sign in to comment.