Skip to content

Commit

Permalink
header
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 committed Mar 8, 2024
1 parent f7f16d2 commit 42d48b5
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 12 deletions.
4 changes: 0 additions & 4 deletions packages/node-core/src/indexer/dictionary/v2/dictionaryV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,10 +151,6 @@ export abstract class DictionaryV2<
}
const result = this.convertResponseBlocks(response.data.result);
this.metadata.end = response.data.result.BlockRange[1];
logger.debug(
'NUM DICT RESULTS',
result?.batchBlocks.map((b) => getBlockHeight(b))
);
return result;
} catch (error: any) {
logger.error(error, `Dictionary query failed. request: ${JSON.stringify(requestData, null, 2)}`);
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/indexer/dictionary/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

export * from './types';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

import { Inject, Injectable } from '@nestjs/common';
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/indexer/dictionary/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

import { MetaData } from '@subql/utils';
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/indexer/dictionary/v1/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

export * from './substrateDictionaryV1';
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

import { gql } from '@apollo/client/core';
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/indexer/dictionary/v2/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

export * from './substrateDictionaryV2';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

import { EventEmitter2 } from '@nestjs/event-emitter';
Expand Down
2 changes: 1 addition & 1 deletion packages/node/src/indexer/dictionary/v2/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2020-2023 SubQuery Pte Ltd authors & contributors
// Copyright 2020-2024 SubQuery Pte Ltd authors & contributors
// SPDX-License-Identifier: GPL-3.0

import { DictionaryV2QueryEntry } from '@subql/node-core';
Expand Down

0 comments on commit 42d48b5

Please sign in to comment.