diff --git a/src/services/dataService.ts b/src/services/dataService.ts index 824f91e..e721ec2 100644 --- a/src/services/dataService.ts +++ b/src/services/dataService.ts @@ -739,7 +739,7 @@ VALUES } } - private static _getTableName({ contractId, type = 'event', id}, withSchema: boolean = true): string { + private static _getTableName({ contractId, type = 'event', id}, withSchema = true): string { let tableName = `contract_id_${contractId}_${type}_id_${id}`; if (withSchema) { tableName = `data.${tableName}`;