add create_accounts command for when refreshing prod db on dev

master
lza_menace 4 years ago
parent bc24c60ba4
commit d29874a92d

@ -53,6 +53,14 @@ def init():
# init db
db.create_tables([Post, Profile, Comment, Notification])
@app.cli.command("create_accounts")
def create_accounts():
wallet = wownero.Wallet()
for post in Post.select():
if post.account_index not in wallet.accounts():
account = wallet.new_account()
print(f"Created account {account}")
@app.cli.command("payout_users")
def payout_users():
wallet = wownero.Wallet()

Loading…
Cancel
Save