From 2a63501ab58d24779ab0dc88bf991e060f317454 Mon Sep 17 00:00:00 2001 From: lilkdi <82094395+lilkdi@users.noreply.github.com> Date: Fri, 9 Apr 2021 08:17:43 +0300 Subject: [PATCH] troubleshooting --- bitcoin-balance-checker.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/bitcoin-balance-checker.py b/bitcoin-balance-checker.py index dd82464..4043f66 100644 --- a/bitcoin-balance-checker.py +++ b/bitcoin-balance-checker.py @@ -86,17 +86,17 @@ def check_balance(address): with open("list-addresses.txt") as file: for line in file: - arq1 = open('addresses-with-balance-yay.txt', 'a') + arq1 = open('addresses-with-balance-yay.txt', 'a') address = str.strip(line) - print ("__________________________________________________\n") + print ("__________________________________________________\n"); check_balance(address) -print "__________________________________________________\n" -print "Developed by: ~geniusprodigy" -print "My contact on reddit: reddit.com/u/genius360\n" -print "If this saved you time or helped, donations please for BTC Address:" -print "1FrRd4iZRMU8i2Pbffzkac5u4KwUptmc7S" +print ( "__________________________________________________\n" ); +print ( "Developed by: ~geniusprodigy" ); +print ( "My contact on reddit: reddit.com/u/genius360\n" ); +print ( "If this saved you time or helped, donations please for BTC Address:" ); +print ( "1FrRd4iZRMU8i2Pbffzkac5u4KwUptmc7S" ); arq1 = open('addresses-with-balance-yay.txt', 'a') arq1.write("\nDeveloped by: ~geniusprodigy. If this saved you time or helped, donations please for BTC Address: 1FrRd4iZRMU8i2Pbffzkac5u4KwUptmc7S") arq1.close()