Skip to content

Commit

Permalink
merged conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
julien51 committed Nov 2, 2023
1 parent 2c5e0d9 commit 0c851cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locksmith/src/utils/keyPricer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default class KeyPricer {
symbol,
parseFloat(ethers.utils.formatEther(gasCost).toString())
)
if (usdPrice < networks[network].maxFreeClaimCost!) {
if (usdPrice > networks[network].maxFreeClaimCost!) {
return { canAfford: false, reason: `Gas costs too high: $${usdPrice}` }
}
return { canAfford: true }
Expand Down

0 comments on commit 0c851cc

Please sign in to comment.