Skip to content

Commit

Permalink
0.9.3 release prep
Browse files Browse the repository at this point in the history
  • Loading branch information
generalpiston committed Feb 2, 2019
1 parent 55e2662 commit ac9ee92
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion App/modals/PreviewOrderModal/FillOrders.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ class PreviewFillOrders extends Component {
right={
<FormattedTokenAmount
amount={networkFeeFundsAfterOrder}
assetData={feeAsset.assetData}
assetData={networkFeeAsset.assetData}
style={[styles.tokenAmountRight]}
/>
}
Expand Down
9 changes: 5 additions & 4 deletions App/screens/trade/ProductDetailsScreen/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import {
loadAllowance,
loadBalance,
loadOrderbook,
updateForexTickers,
updateTokenTickers
updateForexTicker,
updateTokenTicker
} from '../../../../thunks';
import ForexProductDetailsView from './ForexProductDetailsView';
import TokenProductDetailsView from './TokenProductDetailsView';
Expand Down Expand Up @@ -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)),
Expand Down
1 change: 1 addition & 0 deletions App/screens/trade/ProductScreen/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions ios/mobidex/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>0.9.2</string>
<string>0.9.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>5</string>
<string>1</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
1 change: 0 additions & 1 deletion services/ZeroExService.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import {
} from './WalletService';

function parseMarketActionResult(result) {
console.warn(result);
if (result.length !== 258) return null;

let prunedResult = result.substring(2);
Expand Down

0 comments on commit ac9ee92

Please sign in to comment.