Skip to content

Commit

Permalink
update version;
Browse files Browse the repository at this point in the history
fix validateAddress bug
  • Loading branch information
leoaion committed Nov 14, 2019
1 parent 8879e27 commit d13b76c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ android {
applicationId "com.chaion.makkii"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 15
versionName "1.4.0"
versionCode 16
versionName "1.4.1"
ndk {
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
Expand Down
2 changes: 1 addition & 1 deletion services/tx_sender.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const validateTxObj = async (txObj, account) => {
const { symbol, coinSymbol } = account;
// validate 'to'
try {
let ret = await validateAddress(to, symbol);
let ret = await validateAddress(symbol, to);
if (!ret) {
return { result: false, err: 'error_format_recipient' };
}
Expand Down

0 comments on commit d13b76c

Please sign in to comment.