module Bitbot::Balance
Public Instance Methods
on_balance(m)
click to toggle source
# File lib/bitbot/plugin/balance.rb, line 2 def on_balance(m) user_id = db.get_or_create_user_id_for_username(m.user.user) m.reply "Your current balance is #{satoshi_with_usd(db.get_balance_for_user_id(user_id))}" m.reply "Please note that a transaction fee of #{satoshi_to_str(withdrawal_fee)} will be added to your withdrawal" end