diff --git a/CHANGELOG.md b/CHANGELOG.md index ee5c84566e8..fa747944292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ - added: Pass OS and app version details to core context for v2/coreRollup endpoint - added: EdgeSpend feature for gift card purchase via Phaze - changed: Append chain names to token codes in RampCreateScene +- changed: ramps: Infinite buy support enabled ## 4.42.0 (staging) - added: Zcash buy/sell support with Banxa -- changed: ramps: Infinite buy support according to new API (disabled temporarily) +- changed: ramps: Infinite buy support according to new API - changed: Optimize login performance. - changed: Update Monero LWS server name to "Edge LWS" - fixed: Light account/backup reminder notification banner sometimes missing on login diff --git a/src/plugins/ramps/rampConstraints.ts b/src/plugins/ramps/rampConstraints.ts index 4c2ed9a674b..37c76da714a 100644 --- a/src/plugins/ramps/rampConstraints.ts +++ b/src/plugins/ramps/rampConstraints.ts @@ -107,9 +107,4 @@ export function* constraintGenerator( if (params.rampPluginId === 'banxa') { yield params.paymentType !== 'ach' } - - if (params.rampPluginId === 'infinite') { - // Disable Infinite completely - yield false - } }