From e7d1f59987149f378d26267e981ebd442e7038ec Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 11 Jun 2016 16:10:45 +0200 Subject: [PATCH] getmpk command: return only one key --- lib/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/commands.py b/lib/commands.py index 7fc923cc..d4f9b2ed 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -349,8 +349,8 @@ class Commands: @command('w') def getmpk(self): - """Get master public key. Return your wallet\'s master public key(s)""" - return self.wallet.get_master_public_keys() + """Get master public key. Return your wallet\'s master public key""" + return self.wallet.get_master_public_key() @command('wp') def getmasterprivate(self):