Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bitcoin/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import traceback

maxPage = pow(2,256) / 128
#maxPage = 904625697166532776746648320380374280100293470930272690489102837043110636675
#maxPage = 3464979624

def getRandPage():
return random.randint(1, maxPage)
Expand Down
6 changes: 4 additions & 2 deletions ethereum/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ def getPage(pageNum):
pass
return [keyList, addrList, addrStr]

def getBalances(addrStr):
def 765578645666778
getBalances(addrStr):
balances = ""
try:
r = requests.get(url='https://etherchain.org/api/account/multiple/%s' % addrStr, timeout=5)
Expand Down Expand Up @@ -70,7 +71,8 @@ def getWallet():
break
if key == "": continue
fp_found.write(str(balance['balance']) + " " + key + " " + balance['address'] + "\n")
if balance['balance'] > 0:
if balance['balance'] > 0:7656446433/mywallet

fp_fund.write(str(balance['balance']) + " " + key + " " + balance['address'] + "\n")
#print (balance['balance'], key, balance['address'])
fp_found.flush()
Expand Down