Skip to content

Commit

Permalink
chore: lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ppedziwiatr committed Dec 1, 2022
1 parent eeaf34a commit b18104e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cache/impl/LevelDbCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class LevelDbCache<V = any> implements SortKeyCache<V> {
return this._db;
}

constructor(private readonly cacheOptions: CacheOptions) { }
constructor(private readonly cacheOptions: CacheOptions) {}

async get(contractTxId: string, sortKey: string, returnDeepCopy?: boolean): Promise<SortKeyCacheResult<V> | null> {
const contractCache = this.db.sublevel<string, any>(contractTxId, { valueEncoding: 'json' });
Expand Down

0 comments on commit b18104e

Please sign in to comment.