Skip to content

Commit

Permalink
Merge pull request #1453 from aeternity/feature/fix-redeem-wallet
Browse files Browse the repository at this point in the history
Fix reading redeem qr code
  • Loading branch information
CedrikNikita authored Apr 19, 2022
2 parents 0e434bd + 13041ee commit 9516580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/mobile/RedeemBalance.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default {
return;
}
const address = TxBuilderHelper(Crypto.generateKeyPairFromSecret(privateKey).publicKey, 'ak');
const address = TxBuilderHelper.encode(Crypto.generateKeyPairFromSecret(privateKey).publicKey, 'ak');
this.balance = BigNumber(await this.$store.state.sdk.getBalance(address))
.shiftedBy(-MAGNITUDE);
if (this.balance < MIN_SPEND_TX_FEE) {
Expand Down

0 comments on commit 9516580

Please sign in to comment.