Skip to content

Commit

Permalink
Added evidence for owning the repository (for codingdefined[mod])
Browse files Browse the repository at this point in the history
  • Loading branch information
burdagay committed Feb 23, 2018
1 parent ff551ba commit 47e5420
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,7 @@ ENV/
.mypy_cache/

# Heroku files
*.pyc
*.pyc

# SQLite
db.sqlite3
15 changes: 14 additions & 1 deletion app/services/steem.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,22 @@ class SteemHelper:
set_shared_steemd_instance(s)
c = Converter()

def get_history(self, username):
a = Account(username)
history = a.history_reverse()
count = 1

for item in history:
if count > 3:
break
print(item)
count = count + 1



def get_payout(self, username):
b = Blog(username)
posts = b.take(50)
posts = b.take(1)
total_pending = 0
total_payout = 0
total_cur_payout = 0
Expand Down
2 changes: 2 additions & 0 deletions evidence.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hi mod codingdefined, this serves as evidence that I own this account.
Please consider. Thank you.

0 comments on commit 47e5420

Please sign in to comment.