From 9cb4800dc86be2dfdc45bcdd2b1b95d9262576d8 Mon Sep 17 00:00:00 2001 From: dpedu Date: Tue, 11 Aug 2015 15:24:25 -0700 Subject: [PATCH] Fix hardcoded name --- pyircbot/modules/CryptoWallet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyircbot/modules/CryptoWallet.py b/pyircbot/modules/CryptoWallet.py index 0dd16dc..0ace884 100755 --- a/pyircbot/modules/CryptoWallet.py +++ b/pyircbot/modules/CryptoWallet.py @@ -136,7 +136,7 @@ class CryptoWallet(ModuleBase): # Create a transaction txn = client.send(walletname, withdrawaddr, withdrawamount) if txn: - self.bot.act_PRIVMSG(prefix.nick, ".withdraw: %s DOGE sent to %s. Transaction ID: %s"% (withdrawamount, withdrawaddr, txn)) + self.bot.act_PRIVMSG(prefix.nick, ".withdraw: %s %s sent to %s. Transaction ID: %s"% (withdrawamount, client.name, withdrawaddr, txn)) else: self.bot.act_PRIVMSG(prefix.nick, ".withdraw: Transaction create failed. Maybe the transaction was too large for the network? Try a smaller increment.")