From c9b3185724f93be0777e0f676bd346da20f1b0de Mon Sep 17 00:00:00 2001 From: ThomasV Date: Tue, 18 Aug 2015 17:05:02 +0200 Subject: [PATCH] copy mpk to clipboard --- scripts/authenticator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/authenticator.py b/scripts/authenticator.py index 9eed5dd7..fcb5add8 100644 --- a/scripts/authenticator.py +++ b/scripts/authenticator.py @@ -290,6 +290,8 @@ class Authenticator: mpk = wallet.get_master_public_key() self.show_qr(mpk) self.show_title('master public key') + droid.setClipboard(mpk) + droid.makeToast("Master public key copied to clipboard") elif event["name"] == "scan": r = droid.scanBarcode()