Skip to content

Commit

Permalink
fix linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
ramilexe committed Mar 26, 2021
1 parent 7dd44f9 commit e92ed4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/dataService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
Expand Down

0 comments on commit e92ed4c

Please sign in to comment.