|
|
|
@ -37,10 +37,10 @@ def make_post(post):
|
|
|
|
|
title = f"SuchWow #{post.id} - {post.title}"
|
|
|
|
|
url = url_for('post.uploaded_file', filename=post.image_name)
|
|
|
|
|
_comment = [
|
|
|
|
|
f"Submitter: {post.submitter}\n",
|
|
|
|
|
f"Timestamp (UTC): {post.timestamp}\n",
|
|
|
|
|
"\nShow this poster some love by sending WOW to the following address:\n\n",
|
|
|
|
|
f"{wallet.get_address(account=post.account_index)}"
|
|
|
|
|
f"Submitter: {post.submitter}\n\n",
|
|
|
|
|
f"Timestamp (UTC): {post.timestamp}\n\n",
|
|
|
|
|
"Show this poster some love by sending WOW to the following address:\n\n",
|
|
|
|
|
f"`{wallet.get_address(account=post.account_index)}`"
|
|
|
|
|
]
|
|
|
|
|
comment = "".join(_comment)
|
|
|
|
|
reddit_post = Reddit().post(title, url)
|
|
|
|
|