Skip to content

Commit 310ba14

Browse files
committed
lint
1 parent e6a532c commit 310ba14

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/common/api-config/api.config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,4 +1085,4 @@ export class ApiConfigService {
10851085

10861086
return timestamp;
10871087
}
1088-
}
1088+
}

src/common/indexer/elastic/elastic.indexer.helper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ export class ElasticIndexerHelper {
570570
.withMustMatchCondition('miniBlockHash', filter.miniBlockHash)
571571
.withMustMultiShouldCondition(filter.hashes, hash => QueryType.Match('_id', hash))
572572
.withMustMatchCondition('status', filter.status)
573-
.withMustMultiShouldCondition(filter.tokens, token => QueryType.Match('tokens', token, QueryOperator.AND))
573+
.withMustMultiShouldCondition(filter.tokens, token => QueryType.Match('tokens', token, QueryOperator.AND));
574574

575575
if (filter.before) {
576576
const timestampBeforeIdentifier = TimeUtils.isTimestampInSeconds(filter.before) ? 'timestamp' : 'timestampMs';

src/utils/time.utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export class TimeUtils {
22
static isTimestampInSeconds(input: number): boolean {
33
return input < 100_000_000_000;
44
}
5-
}
5+
}

src/utils/timestamp.parse.pipe.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ export class TimestampParsePipe implements PipeTransform {
2626
return normalizedInputMs;
2727
}
2828
}
29-
}
29+
}

0 commit comments

Comments
 (0)