aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-21 12:10:44 +0100
committerGravatar jesopo2018-10-21 12:10:44 +0100
commite614eb8e7520828f8f523d36843bf2a5455becca (patch)
treeaa5009bdf5a07ebbf5d1f77e5ce4ce6836c8540f /modules
parentAdd missing "," in modules/coins.py (diff)
signature
'DEFAULT_WALLETS' -> 'WALLETS_DEFAULTS'
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 3b8d5faa..00f9fabd 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -147,7 +147,7 @@ class Module(ModuleManager.BaseModule):
"Please provide a valid positive coin amount")
def _get_default_wallets(self, user):
- return user.get_setting("default-wallets", DEFAULT_WALLETS)
+ return user.get_setting("default-wallets", WALLET_DEFAULTS)
def _set_default_wallet(self, user, type, wallet):
default_wallets = self._get_default_wallets(user)
default_wallets[type.lower()] = wallet.lower()