do not use default address, flash message and redirect back.

pull/2/head
lza_menace 3 years ago
parent 8ab985b88e
commit 111c50829d

@ -99,7 +99,8 @@ def create():
wallet = wownero.Wallet() wallet = wownero.Wallet()
account_index = wallet.new_account() account_index = wallet.new_account()
except: except:
account_index = 0 flash("Suchwow wallet is fucked up! Try again later.")
return redirect(request.url)
post = Post( post = Post(
title=post_title, title=post_title,
text=request.form.get("text", ""), text=request.form.get("text", ""),