Actually by-default give people the default wallet
This commit is contained in:
parent
093ff298ec
commit
ae07ea9da1
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ class Module(ModuleManager.BaseModule):
|
||||||
self._set_pool(server, coins+amount)
|
self._set_pool(server, coins+amount)
|
||||||
|
|
||||||
def _get_user_wallets(self, user):
|
def _get_user_wallets(self, user):
|
||||||
return user.get_setting("wallets", {})
|
return user.get_setting("wallets", {WALLET_DEFAULT: "0.0"})
|
||||||
def _set_user_wallets(self, user, wallets):
|
def _set_user_wallets(self, user, wallets):
|
||||||
user.set_setting("wallets", wallets)
|
user.set_setting("wallets", wallets)
|
||||||
def _reset_user_wallets(self, user):
|
def _reset_user_wallets(self, user):
|
||||||
|
|
Loading…
Reference in a new issue