diff --git a/package.json b/package.json
index a14b481..2e980f7 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "bridge",
- "version": "1.0.11",
+ "version": "1.0.12",
"private": true,
"scripts": {
"build": "npm run check && yarn && cross-env NODE_ENV=production BABEL_ENV=prod vue-cli-service build && npm run zip",
diff --git a/src/components/popups/ManageKeys.vue b/src/components/popups/ManageKeys.vue
index 16e376b..e2c4dfa 100644
--- a/src/components/popups/ManageKeys.vue
+++ b/src/components/popups/ManageKeys.vue
@@ -41,7 +41,7 @@
-
+
@@ -220,7 +220,7 @@
this.addingNewKey = false;
},
async copyPublicKey(keypair){
- window.wallet.utility.copy(keypair.publicKeys.find(x => x.blockchain === this.blockchain).key);
+ window.wallet.utility.copy(keypair.publicKeys.find(x => x.blockchain === keypair.blockchains[0]).key);
PopupService.push(Popups.snackbar('Your public key was copied to your clipboard.'))
},
async exportKey(keypair, bypassPassword = false){
diff --git a/src/services/utility/PasswordHelpers.js b/src/services/utility/PasswordHelpers.js
index 42067c8..1cd6b3c 100644
--- a/src/services/utility/PasswordHelpers.js
+++ b/src/services/utility/PasswordHelpers.js
@@ -5,12 +5,13 @@ import {Popup} from "../../models/popups/Popup";
export default class PasswordHelpers {
static async verifyPIN(){
- if(!StoreService.get().state.scatter.pin || !StoreService.get().state.scatter.pin.length) return true;
- return new Promise(resolve => {
- PopupService.push(Popup.enterPIN(verified => {
- resolve(verified);
- }))
- })
+ return true;
+ // if(!StoreService.get().state.scatter.pin || !StoreService.get().state.scatter.pin.length) return true;
+ // return new Promise(resolve => {
+ // PopupService.push(Popup.enterPIN(verified => {
+ // resolve(verified);
+ // }))
+ // })
}
-}
\ No newline at end of file
+}