commit 3960f383e02ea09a5db76ca4b3b7be833127cbea
parent 7bf1a6248ebffd09ae0229327bcd2dfda1c4c455
Author: thomasv <thomasv@gitorious>
Date: Fri, 1 Mar 2013 09:58:06 +0100
default parameter for addresses() command
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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):