Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler committed Jul 2, 2024
1 parent bb66f5b commit 6b3917f
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions src/system.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,21 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { ANT, ANTRecord, AoIORead, IO, ProcessId, isLeasedArNSRecord } from '@ar.io/sdk/node';
import {
ANT,
ANTRecord,
AoIORead,
IO,
ProcessId,
isLeasedArNSRecord,
} from '@ar.io/sdk/node';
import pLimit from 'p-limit';



import { LmdbKVStore } from './cache/lmdb-kv-store.js';
import * as config from './config.js';
import log from './log.js';
import { ArNSResolvedData } from './types.js';


let lastEvaluationTimestamp: number | undefined;
let evaluationInProgress = false;
export const getLastEvaluatedTimestamp = () => lastEvaluationTimestamp;
Expand Down Expand Up @@ -200,7 +204,6 @@ export async function evaluateArNSNames() {
return;
}


// Exception Handlers

process.on('uncaughtException', (error: any) => {
Expand Down

0 comments on commit 6b3917f

Please sign in to comment.