Skip to content

Commit ac2ac69

Browse files
author
Layko Andrey
committed
10 - Fix asset exchange rate
Changed exchange rates API URL to Binance API
1 parent 53d391d commit ac2ac69

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/actions/deploy-contract.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const deployEthereumContract = formValuesInit => async (dispatch, getStat
9494

9595
export const convertCurrencies = conversionValues => async dispatch => {
9696
const fromAmount = conversionValues.fromAmount ? conversionValues.fromAmount : '0';
97-
let fromCurrency = conversionValues.fromCurrency ? conversionValues.fromCurrency.toUpperCase() : 'TUSD;
97+
let fromCurrency = conversionValues.fromCurrency ? conversionValues.fromCurrency.toUpperCase() : 'TUSD';
9898
let toCurrency = conversionValues.toCurrency ? conversionValues.toCurrency.toUpperCase() : 'ETH';
9999

100100
if (toCurrency === 'USD') {

0 commit comments

Comments
 (0)