Skip to content

Commit

Permalink
style: linted
Browse files Browse the repository at this point in the history
  • Loading branch information
dafuga committed Jan 20, 2025
1 parent d721ed1 commit 2aa4ea2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/lib/lookup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export const networkRequest = (
return new Promise((resolve, reject) => {
const client = apiClient || new APIClient(chain)

console.log({client})
const timeoutId = setTimeout(() => {
reject(new Error('Request timed out.'))
}, 1000)
Expand Down Expand Up @@ -42,7 +41,6 @@ export const lookupNetwork = async (publicKey: PublicKey, chain: Chain, apiClien
const accounts = await networkRequest(publicKey, chain, apiClient)
return {chain, accounts}
} catch (error) {
console.log({error})
logger.warn(`Lookup error on ${chain.name}: ${error}`)
return {chain, accounts: [], error: `Lookup error: ${error}`}
}
Expand Down
2 changes: 0 additions & 2 deletions src/routes/lookup/[publicKey]/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ export const GET = async ({params, url, fetch}: RequestEvent) => {
? [...MAINNET_CHAINS, ...TESTNET_CHAINS]
: MAINNET_CHAINS

console.log({fetch})

const lookups = (
await Promise.all(
chains.map((chain) =>
Expand Down

0 comments on commit 2aa4ea2

Please sign in to comment.