Skip to content

Commit

Permalink
Merge pull request #345 from luxfi/feat/bridge2
Browse files Browse the repository at this point in the history
chore: removed console
  • Loading branch information
venuswhispers authored Jan 15, 2025
2 parents 5c47b6a + b052355 commit 118b0c9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/bridge/src/lib/addressValidator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ export function isValidAddress(address?: string, network?: { internal_name: stri
return false
}

console.log("::validate address:", network, address)
if (network?.internal_name === KnownInternalNames.Networks.RoninMainnet) {
if (address.startsWith("ronin:")) {
return isValidEtherAddress(address.replace("ronin:", "0x"));
Expand Down
1 change: 0 additions & 1 deletion app/server/src/util/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export function isValidAddress(address?: string, network?: { internal_name: stri
return false
}

console.log("::validate address:", network, address)
if (network?.internal_name === KnownInternalNames.Networks.RoninMainnet) {
if (address.startsWith("ronin:")) {
return isAddress(address.replace("ronin:", "0x"))
Expand Down

0 comments on commit 118b0c9

Please sign in to comment.