Skip to content

Commit

Permalink
remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
andresaiello committed Feb 21, 2024
1 parent 87c0be2 commit 1ba74d7
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ const preCalculatedResults = [

// Function to check if a transaction involves the specified address
const isTransactionOfInterest = (tx: any, address: string) => {
if (tx.hash === "A0x6a8b592fbe88c440e1e491b1d30f4e1a87b4b62df1e37bf5201c885440510bb0") {
console.log(tx);
}
try {
const isBTCDestination = tx?.to?.toLowerCase() === address.toLowerCase();
const isWithdraw = tx?.input?.toLowerCase().includes("0xc7012626");
Expand Down Expand Up @@ -101,7 +98,6 @@ const findTransactionsInRange = async () => {

totalTx += filteredTx.length;
if (filteredTx.length > 0) {
// console.log(filteredTx.map((tx: any) => tx.hash));
txHashes = txHashes.concat(filteredTx.map((tx: any) => tx.hash));
}

Expand Down

0 comments on commit 1ba74d7

Please sign in to comment.