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

feat(addOrder): signature verification from smartcontract #53

Merged
merged 16 commits into from
Sep 23, 2023
Prev Previous commit
Next Next commit
remove console.log
Mitsichury committed Sep 23, 2023
commit 10f8cd2f7aec6a176ec93eb3e34d83444548e98a
1 change: 0 additions & 1 deletion src/client/Web3SwapClient.ts
Original file line number Diff line number Diff line change
@@ -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;
1 change: 0 additions & 1 deletion src/client/Web3SwapERC20Client.ts
Original file line number Diff line number Diff line change
@@ -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;
}