File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55## 4.42.0 (staging)
66
77- added: Zcash buy/sell support with Banxa
8- - changed: ramps: Infinite buy support according to new API
8+ - changed: ramps: Infinite buy support according to new API (disabled temporarily)
99- changed: Optimize login performance.
1010- changed: Update Monero LWS server name to "Edge LWS"
1111- fixed: Light account/backup reminder notification banner sometimes missing on login
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ export interface RampConstraintParams {
1616 paymentType : FiatPaymentType
1717}
1818
19+ /**
20+ * yield true // enabled
21+ * yield false // disabled
22+ */
1923export function validateRampConstraintParams (
2024 params : RampConstraintParams
2125) : boolean {
@@ -103,4 +107,9 @@ export function* constraintGenerator(
103107 if ( params . rampPluginId === 'banxa' ) {
104108 yield params . paymentType !== 'ach'
105109 }
110+
111+ if ( params . rampPluginId === 'infinite' ) {
112+ // Disable Infinite completely
113+ yield false
114+ }
106115}
You can’t perform that action at this time.
0 commit comments