aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/coins.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/coins.py b/modules/coins.py
index a9204295..b14ce519 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -74,7 +74,6 @@ class Module(ModuleManager.BaseModule):
return decimal.Decimal(wallets.get(wallet.lower(), "0.0"))
def _get_all_user_coins(self, user):
wallets = self._get_user_wallets(user)
- print(wallets)
return sum([decimal.Decimal(amount) for amount in wallets.values()])
def _set_user_coins(self, user, coins, wallet="default"):
wallets = self._get_user_wallets(user)