From 69b4e0ccfaf39d517bc3b9cf0b0fd014695b7c19 Mon Sep 17 00:00:00 2001 From: Santiago Pittella Date: Mon, 19 Feb 2024 11:37:22 +0100 Subject: [PATCH] remote print --- build/src/adapters.js | 1 - src/adapters.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/build/src/adapters.js b/build/src/adapters.js index 300e8d56f90c..dddc0c10b016 100644 --- a/build/src/adapters.js +++ b/build/src/adapters.js @@ -108,7 +108,6 @@ function AdapterL1(Base) { var _d; const depositTx = await this.getDepositTx(transaction, nativeERC20); if (transaction.token == utils_1.ETH_ADDRESS || nativeERC20 == transaction.token) { - console.error("NATIVE ERC20 VERSION"); // Check allowance only if we are operating with a native ERC20 if (nativeERC20 == transaction.token) { const bridgeAddress = (await this.getMainContract()).address; diff --git a/src/adapters.ts b/src/adapters.ts index 741883e4d93e..8d38309d8266 100644 --- a/src/adapters.ts +++ b/src/adapters.ts @@ -192,7 +192,6 @@ export function AdapterL1>(Base: TBase) { ): Promise { const depositTx = await this.getDepositTx(transaction, nativeERC20); if (transaction.token == ETH_ADDRESS || nativeERC20 == transaction.token) { - console.error("NATIVE ERC20 VERSION") // Check allowance only if we are operating with a native ERC20 if (nativeERC20 == transaction.token) { const bridgeAddress = (await this.getMainContract()).address;