diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/coins.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/coins.py b/modules/coins.py index 00c3974c..b3f44002 100644 --- a/modules/coins.py +++ b/modules/coins.py @@ -437,7 +437,7 @@ class Module(ModuleManager.BaseModule): """ wallet_1 = event["args_split"][0] wallet_2 = event["args_split"][1] - amount = self._parse_coins(send_amount, DECIMAL_ZERO) + amount = self._parse_coins(event["args_split"][2], DECIMAL_ZERO) for wallet in [wallet_1, wallet_2]: if not self._user_has_wallet(event["user"], wallet): raise utils.EventError("%s: Unknown wallet '%s'" % |
