Skip to content

Commit

Permalink
use full range for checking min amount
Browse files Browse the repository at this point in the history
  • Loading branch information
bigboydiamonds committed Sep 18, 2024
1 parent 94846ac commit 55c8d85
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion packages/rest-api/src/controllers/getBridgeLimitsController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,17 @@ export const getBridgeLimitsController = async (req, res) => {
upperLimitAmount
)

const lowerLimitValues = ['0.01', '0.1', '1', '10']
const lowerLimitValues = [
'0.01',
'0.1',
'1',
'10',
'100',
'1000',
'10000',
'100000',
'1000000',
]
let lowerLimitBridgeQuotes = null

for (const limit of lowerLimitValues) {
Expand Down

0 comments on commit 55c8d85

Please sign in to comment.