Skip to content

Commit

Permalink
Merge pull request #169 from Bit-Nation/feature/166-ethereum-crash
Browse files Browse the repository at this point in the history
Fix crash on Ethereum related calls
  • Loading branch information
florianlenz authored Feb 13, 2018
2 parents 9bd09dc + c647a72 commit dfde9e5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions App.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ import { Navigation } from 'react-native-navigation';
import configureStore from './src/config/configureStore';
import { registerScreens } from './src/screens/screens';
import { screen, appStyle, tabsStyle } from './src/global/Screens';
import asyncToGenerator from 'async-to-generator'

// Fix for https://github.com/Bit-Nation/BITNATION-Pangea-mobile/issues/166
// Related with https://github.com/facebook/react-native/issues/4844
// @todo Change that to more appropriate solution
babelHelpers.asyncToGenerator = asyncToGenerator;

const store = configureStore();
registerScreens(store, Provider);
Expand Down
5 changes: 5 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"dependencies": {
"BITNATION-Pangea-libs": "git+https://github.com/Bit-Nation/BITNATION-Pangea-libs.git#0.3.1",
"assert": "^1.4.1",
"async-to-generator": "^1.1.0",
"awilix": "^3.0.1",
"bignumber.js": "^5.0.0",
"buffer": "^4.9.1",
Expand Down

0 comments on commit dfde9e5

Please sign in to comment.