Skip to content

Commit

Permalink
fix_qr
Browse files Browse the repository at this point in the history
  • Loading branch information
zx870076178 committed Feb 26, 2019
1 parent dcf7cd8 commit abd9642
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 9 deletions.
1 change: 0 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ task wrapper(type: Wrapper) {
gradleVersion = '4.4'
distributionUrl = distributionUrl.replace("bin", "all")
}

subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
Expand Down
2 changes: 1 addition & 1 deletion ios/Polkawallet/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.10</string>
<string>1.9</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
6 changes: 2 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Polkawallet",
"version": "0.0.10",
"version": "0.0.11",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
Expand Down
2 changes: 1 addition & 1 deletion src/code/Assets/secondary/Transfer/transfer.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ import {
if(this.state.address==''&&this.props.rootStore.stateStore.transfer_address==0&&this.props.rootStore.stateStore.iscamera==0){alert('Please enter address')}
else{
this.props.rootStore.stateStore.value=this.state.value*this.state.multiple
this.props.rootStore.stateStore.inaddress=(this.props.rootStore.stateStore.isaddresses==0)?this.state.address:this.props.rootStore.stateStore.t_address
this.props.rootStore.stateStore.inaddress=(this.props.rootStore.stateStore.isaddresses==0&&this.props.rootStore.stateStore.iscamera==0)?this.state.address:this.props.rootStore.stateStore.t_address
this.props.rootStore.stateStore.isaddresses=0
this.props.rootStore.stateStore.transfer_address=0
this.props.rootStore.stateStore.iscamera=0
Expand Down
2 changes: 1 addition & 1 deletion src/code/Profile/secondary/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default class New extends Component {
{/* 版本 */}
<View style={{flex:1}}/>
<View style={[styles.msgView,{marginBottom:ScreenHeight/30}]}>
<Text style={{fontSize:ScreenWidth/25,color:'#808080'}}>Version: 0.0.10</Text>
<Text style={{fontSize:ScreenWidth/25,color:'#808080'}}>Version: 0.0.9</Text>
</View>
</View>
);
Expand Down

0 comments on commit abd9642

Please sign in to comment.