You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
459 B
Python
14 lines
459 B
Python
import logging
|
|
from tipbot import wownero
|
|
from tipbot import db
|
|
from tipbot.helpers.decorators import wallet_rpc_required, log_event, registration_required
|
|
|
|
|
|
@wallet_rpc_required
|
|
@registration_required
|
|
@log_event
|
|
def deposit(update, context):
|
|
u = db.User.get(telegram_id=update.message.from_user['id'])
|
|
address = wownero.Wallet().addresses(account=u.account_index)[0]
|
|
update.message.reply_text(f'Deposit address for {u.telegram_user}: {address}')
|