db optimizations

This commit is contained in:
lza_menace 2021-05-08 00:08:39 -07:00
parent a6f858671e
commit 9e047a214a
3 changed files with 8 additions and 6 deletions

View file

@ -31,7 +31,7 @@ def register(update, context):
return False
else:
try:
account_index = wallet.new_account(label=un)
account = wallet.new_account(label=un)
except Exception as e:
logging.error(f'Unable to create a new account in wallet RPC: {e}. Debug: {msg}')
msg.reply_text('Unable to create a new account for you. Ask for help.')
@ -40,7 +40,8 @@ def register(update, context):
u = User(
telegram_id=uid,
telegram_user=un,
account_index=account_index,
account_index=account[0],
address=account[1]
)
u.save()
reply_text = [