From 3cd07c4dea64917f8254e069ccb7d6968c23131b Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 3 Mar 2014 15:56:32 +0100 Subject: [PATCH] get public_node doesn't use coin param anymore --- cmd.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd.py b/cmd.py index f35af8e..5c71ca8 100755 --- a/cmd.py +++ b/cmd.py @@ -102,7 +102,7 @@ class Commands(object): def get_public_node(self, args): address_n = self.client.expand_path(args.n) - return self.client.get_public_node(args.coin, address_n) + return self.client.get_public_node(address_n) def set_label(self, args): return self.client.apply_settings(label=args.label) @@ -241,7 +241,6 @@ class Commands(object): ) get_public_node.arguments = ( - (('-c', '--coin'), {'type': str, 'default': 'Bitcoin'}), (('-n', '-address'), {'type': str}), )