fix prefix check
This commit is contained in:
parent
54b4196edc
commit
6b47cc9da9
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ angular.module('copayApp.controllers').controller('paperWalletController',
|
|||
self.onData = function(data) {
|
||||
self.error = '';
|
||||
self.scannedKey = data;
|
||||
self.isPkEncrypted = (data.charAt(0) == '6');
|
||||
self.isPkEncrypted = (data.substring(0,2) == '6P');
|
||||
}
|
||||
|
||||
self._scanFunds = function(cb) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue