From 3960f383e02ea09a5db76ca4b3b7be833127cbea Mon Sep 17 00:00:00 2001 From: thomasv Date: Fri, 1 Mar 2013 09:58:06 +0100 Subject: [PATCH] default parameter for addresses() command --- lib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/commands.py b/lib/commands.py index be45f9d47..ac1ee5b7e 100644 --- a/lib/commands.py +++ b/lib/commands.py @@ -286,7 +286,7 @@ class Commands: return c - def addresses(self, show_all): + def addresses(self, show_all = False): out = [] for addr in self.wallet.all_addresses(): if show_all or not self.wallet.is_change(addr):