fix long lines
This commit is contained in:
parent
897fba35df
commit
c88631d910
1 changed files with 10 additions and 7 deletions
|
@ -777,12 +777,14 @@ class Wallet(object):
|
||||||
if success is True:
|
if success is True:
|
||||||
if result is False:
|
if result is False:
|
||||||
if balance[4] <= 1: # first or second strike, give them another chance
|
if balance[4] <= 1: # first or second strike, give them another chance
|
||||||
new_expected_balance = (balance[0],
|
new_expected_balance = (
|
||||||
balance[1],
|
balance[0],
|
||||||
balance[2],
|
balance[1],
|
||||||
datetime.datetime.now() + self.max_expected_payment_time,
|
balance[2],
|
||||||
balance[4] + 1,
|
datetime.datetime.now() + self.max_expected_payment_time,
|
||||||
balance[5])
|
balance[4] + 1,
|
||||||
|
balance[5]
|
||||||
|
)
|
||||||
self.expected_balance_at_time.append(new_expected_balance)
|
self.expected_balance_at_time.append(new_expected_balance)
|
||||||
peer.update_score(-5.0)
|
peer.update_score(-5.0)
|
||||||
else:
|
else:
|
||||||
|
@ -889,7 +891,8 @@ class LBRYumWallet(Wallet):
|
||||||
|
|
||||||
def check_started():
|
def check_started():
|
||||||
if self.network.is_connecting():
|
if self.network.is_connecting():
|
||||||
if not self.printed_retrieving_headers and self.network.blockchain.retrieving_headers:
|
if not self.printed_retrieving_headers and \
|
||||||
|
self.network.blockchain.retrieving_headers:
|
||||||
alert.info("Running the wallet for the first time. This may take a moment.")
|
alert.info("Running the wallet for the first time. This may take a moment.")
|
||||||
self.printed_retrieving_headers = True
|
self.printed_retrieving_headers = True
|
||||||
return False
|
return False
|
||||||
|
|
Loading…
Reference in a new issue