aboutsummaryrefslogtreecommitdiffstats
path: root/packages/pipeline/src/scripts/pull_missing_events.ts
diff options
context:
space:
mode:
authorJake Ellowitz <jake.ellowitz@gmail.com>2018-11-20 08:24:07 +0800
committerAlex Browne <stephenalexbrowne@gmail.com>2018-12-05 06:24:48 +0800
commitc6af5131b0b06433d6294260274e187ad61f4ef7 (patch)
tree338aaeaaa2673ea4c33773e3f99c53e4a10e3c42 /packages/pipeline/src/scripts/pull_missing_events.ts
parent9986717671fe8e14c2168f7479bdaffe406bedc0 (diff)
downloaddexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.gz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.bz2
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.lz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.xz
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.tar.zst
dexon-sol-tools-c6af5131b0b06433d6294260274e187ad61f4ef7.zip
Pull token metadata re trusted tokens
Diffstat (limited to 'packages/pipeline/src/scripts/pull_missing_events.ts')
-rw-r--r--packages/pipeline/src/scripts/pull_missing_events.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/pipeline/src/scripts/pull_missing_events.ts b/packages/pipeline/src/scripts/pull_missing_events.ts
index 0b7f6287f..68cabe3de 100644
--- a/packages/pipeline/src/scripts/pull_missing_events.ts
+++ b/packages/pipeline/src/scripts/pull_missing_events.ts
@@ -64,7 +64,7 @@ async function getCancelUpToEventsAsync(eventsSource: ExchangeEventsSource): Pro
await saveEventsAsync(startBlock === EXCHANGE_START_BLOCK, repository, events);
}
-const tabelNameRegex = /^[a-zA-Z_]*$/;
+const tableNameRegex = /^[a-zA-Z_]*$/;
async function getStartBlockAsync<T extends ExchangeEvent>(repository: Repository<T>): Promise<number> {
const fillEventCount = await repository.count();
@@ -73,7 +73,7 @@ async function getStartBlockAsync<T extends ExchangeEvent>(repository: Repositor
return EXCHANGE_START_BLOCK;
}
const tableName = repository.metadata.tableName;
- if (!tabelNameRegex.test(tableName)) {
+ if (!tableNameRegex.test(tableName)) {
throw new Error('Unexpected special character in table name: ' + tableName);
}
const queryResult = await connection.query(