mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
Check if fixed rate
This commit is contained in:
parent
032a8c8c33
commit
37045578c2
1 changed files with 2 additions and 2 deletions
|
@ -160,8 +160,8 @@ class TrocadorExchangeProvider extends ExchangeProvider {
|
||||||
'ticker_to': to.title.toLowerCase(),
|
'ticker_to': to.title.toLowerCase(),
|
||||||
'network_from': _networkFor(from),
|
'network_from': _networkFor(from),
|
||||||
'network_to': _networkFor(to),
|
'network_to': _networkFor(to),
|
||||||
'amount_from': amount.toString(),
|
if (!isFixedRateMode) 'amount_from': amount.toString(),
|
||||||
'amount_to': amount.toString(),
|
if (isFixedRateMode) 'amount_to': amount.toString(),
|
||||||
'payment': isFixedRateMode ? 'True' : 'False',
|
'payment': isFixedRateMode ? 'True' : 'False',
|
||||||
'min_kycrating': 'C',
|
'min_kycrating': 'C',
|
||||||
'markup': '3',
|
'markup': '3',
|
||||||
|
|
Loading…
Reference in a new issue