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

Commit

Permalink
Remove extraneous log statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
sproxet committed Sep 21, 2022
1 parent 2b6a0e9 commit 2ab98d1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/renderer/components/CoinSwapPage/CoinSwapDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,6 @@ export default {
const v = stringToBigint(value);
const min = stringToBigint(String(info.min));
const max = stringToBigint(String(info.max));
console.log([v, min, max]);
return v >= stringToBigint(String(info.min)) && v <= stringToBigint(String(info.max));
}
})
Expand Down

0 comments on commit 2ab98d1

Please sign in to comment.