diff --git a/App/modals/PreviewOrderModal/FillOrders.js b/App/modals/PreviewOrderModal/FillOrders.js index 24b3450..310fa58 100644 --- a/App/modals/PreviewOrderModal/FillOrders.js +++ b/App/modals/PreviewOrderModal/FillOrders.js @@ -456,7 +456,7 @@ class PreviewFillOrders extends Component { right={ } diff --git a/App/screens/trade/ProductDetailsScreen/base.js b/App/screens/trade/ProductDetailsScreen/base.js index 5a7a44b..ad65bc4 100644 --- a/App/screens/trade/ProductDetailsScreen/base.js +++ b/App/screens/trade/ProductDetailsScreen/base.js @@ -8,8 +8,8 @@ import { loadAllowance, loadBalance, loadOrderbook, - updateForexTickers, - updateTokenTickers + updateForexTicker, + updateTokenTicker } from '../../../../thunks'; import ForexProductDetailsView from './ForexProductDetailsView'; import TokenProductDetailsView from './TokenProductDetailsView'; @@ -72,8 +72,9 @@ class BaseProductDetailsScreen extends Component { this.setState({ refreshing: true }); await Promise.all([ - this.props.dispatch(updateForexTickers(reload)), - this.props.dispatch(updateTokenTickers(reload)), + this.props.dispatch(updateForexTicker(base.symbol, reload)), + this.props.dispatch(updateForexTicker(quote.symbol, reload)), + this.props.dispatch(updateTokenTicker(base.symbol, quote.symbol, reload)), this.props.dispatch(loadAllowance(base.assetData, reload)), this.props.dispatch(loadAllowance(quote.assetData, reload)), this.props.dispatch(loadAllowance(feeAsset.assetData, reload)), diff --git a/App/screens/trade/ProductScreen/base.js b/App/screens/trade/ProductScreen/base.js index 4214631..4edf2c3 100644 --- a/App/screens/trade/ProductScreen/base.js +++ b/App/screens/trade/ProductScreen/base.js @@ -75,6 +75,7 @@ class BaseProductItem extends Component { this.setState({ loading: true }); await Promise.all([ this.props.dispatch(updateForexTicker(base.symbol, reload)), + this.props.dispatch(updateForexTicker(quote.symbol, reload)), this.props.dispatch(updateTokenTicker(base.symbol, quote.symbol, reload)), this.props.dispatch( loadOrderbook(base.assetData, quote.assetData, reload) diff --git a/android/app/build.gradle b/android/app/build.gradle index 047d195..d4d0fed 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -113,8 +113,8 @@ android { applicationId "io.mobidex" minSdkVersion 23 targetSdkVersion 27 - versionCode 905 - versionName "0.9.2" + versionCode 909 + versionName "0.9.3" missingDimensionStrategy "RNN.reactNativeVersion", "reactNative55" ndk { abiFilters "armeabi-v7a", "x86" diff --git a/ios/mobidex/Info.plist b/ios/mobidex/Info.plist index 1b3097f..3817728 100644 --- a/ios/mobidex/Info.plist +++ b/ios/mobidex/Info.plist @@ -17,11 +17,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 0.9.2 + 0.9.3 CFBundleSignature ???? CFBundleVersion - 5 + 1 LSRequiresIPhoneOS NSAppTransportSecurity diff --git a/services/ZeroExService.js b/services/ZeroExService.js index ae51d22..af1f5d5 100644 --- a/services/ZeroExService.js +++ b/services/ZeroExService.js @@ -11,7 +11,6 @@ import { } from './WalletService'; function parseMarketActionResult(result) { - console.warn(result); if (result.length !== 258) return null; let prunedResult = result.substring(2);