diff --git a/src/cache/impl/LevelDbCache.ts b/src/cache/impl/LevelDbCache.ts index 626e3b02..045466b6 100644 --- a/src/cache/impl/LevelDbCache.ts +++ b/src/cache/impl/LevelDbCache.ts @@ -41,7 +41,7 @@ export class LevelDbCache implements SortKeyCache { return this._db; } - constructor(private readonly cacheOptions: CacheOptions) { } + constructor(private readonly cacheOptions: CacheOptions) {} async get(contractTxId: string, sortKey: string, returnDeepCopy?: boolean): Promise | null> { const contractCache = this.db.sublevel(contractTxId, { valueEncoding: 'json' });