aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2018-10-19 11:44:59 +0100
committerGravatar jesopo2018-10-19 11:44:59 +0100
commit71da117060c797982c2107d63c54c0e6474598b7 (patch)
tree9969e9d80b0d6bc68f2622c728f7e3f7f8ae1284 /modules
parentDangerous typo in modules/coins.py - 'wallet' -> 'wallets' (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 b4aa692d..e5e3c1fb 100644
--- a/modules/coins.py
+++ b/modules/coins.py
@@ -384,7 +384,7 @@ class Module(ModuleManager.BaseModule):
:help: Send coins to another user
:usage: <nickname> <amount>
"""
- wallet_in, wallet_out = self._default_wallets()
+ wallet_in, wallet_out = self._default_wallets(event["user"])
if len(event["args_split"]) > 2:
wallet_in, wallet_out = self._parse_wallets(event["user"],
event["args_split"][2])