Skip to content
This repository has been archived by the owner on Feb 13, 2024. It is now read-only.

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Mitsichury committed Sep 23, 2023
1 parent 662630c commit 10f8cd2
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/client/Web3SwapClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ export class Web3SwapClient {
fullOrder
)
const errors = checkResultToErrors(response[1], response[0])
console.log(errors)
for (let index in errors) {
if(Object.keys(OrderErrors).includes(errors[index])) {
isValid = false;
Expand Down
1 change: 0 additions & 1 deletion src/client/Web3SwapERC20Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ export class Web3SwapERC20Client {
const errors = checkResultToErrors(response[0], response[1])
for (let index in errors) {
if(Object.keys(ERC20Errors).includes(errors[index])) {
console.log(Object.keys(ERC20Errors), errors[index])
isValid = false;
break;
}
Expand Down

0 comments on commit 10f8cd2

Please sign in to comment.