Remove logging

This commit is contained in:
Valtteri Karesto
2022-03-24 21:22:27 +02:00
parent bd32555617
commit fc7652f48e
3 changed files with 0 additions and 4 deletions

View File

@@ -22,7 +22,6 @@ export default async function handler(
return res.status(405).json({ error: 'Method not allowed!' })
}
const { account } = req.query;
console.log(req.query)
const ip = Array.isArray(req?.headers?.["x-real-ip"]) ? req?.headers?.["x-real-ip"][0] : req?.headers?.["x-real-ip"];
try {
const response = await fetch(`https://${process.env.NEXT_PUBLIC_TESTNET_URL}/newcreds?account=${account ? account : ''}`, {