aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-22 13:13:13 +0100
committerGravatar jesopo2018-10-22 13:13:13 +0100
commit8e2a3be90df7d06346793995a9fe43554c005839 (patch)
tree9bfb5ffcd57200449ca8868d43c0d0d040cceaf3 /modules
parent_default_wallet_for is for find the default type of a given wallet, not the (diff)
signature
_default_wallets takes a `user` param
Diffstat (limited to 'modules')
-rw-r--r--modules/coins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/coins.py b/modules/coins.py
index d6f43ae3..963d7ae7 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -167,7 +167,7 @@ class Module(ModuleManager.BaseModule):
def _parse_wallets(self, user, s):
if not s:
- return self._default_wallets()
+ return self._default_wallets(user)
if not ":" in s:
return s, s
wallet_in_default, wallet_out_default = self._default_wallets(user)