Skip to content

Commit

Permalink
fixed missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
fco-fbatch committed Oct 13, 2023
1 parent cc488c6 commit fbe243b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/mocks/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {randomBytes} from 'crypto';
import {valueToBigInt, verifyProof} from '../utilities';

const REGION = 'eu-central-1'
const PROVIDER = 'aws'
const API_VER = 'v0'
const REGION = 'eu-central-1';
const PROVIDER = 'aws';
const API_VER = 'v0';
const BASE_URL = `https://${PROVIDER}-${REGION}.hollowdb.xyz/db/${API_VER}`;

const DB: Record<string, unknown> = {};
Expand Down

0 comments on commit fbe243b

Please sign in to comment.