mirror of
https://git.wownero.com/lza_menace/suchwow.git
synced 2024-08-15 01:03:19 +00:00
filter on approved posts only on leaderboard
This commit is contained in:
parent
b5f7fa766f
commit
6be72e3d4c
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ bp = Blueprint("leaderboard", "leaderboard")
|
|||
@bp.route("/leaderboard")
|
||||
def leaderboard():
|
||||
top_posters = {}
|
||||
posts = Post.select()
|
||||
posts = Post.select().where(Post.approved==True)
|
||||
for post in posts:
|
||||
transfers = []
|
||||
incoming = wownero.Wallet().incoming_transfers(post.account_index)
|
||||
|
|
Loading…
Reference in a new issue