Browse Source
fix undefined name 'CHANNEL_INIT_TIMEOUT'
hard-fail-on-bad-server-string
SomberNight
5 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
2 additions and
2 deletions
-
electrum/lnworker.py
|
|
@ -61,7 +61,7 @@ from .i18n import _ |
|
|
|
from .lnrouter import RouteEdge, LNPaymentRoute, is_route_sane_to_use |
|
|
|
from .address_synchronizer import TX_HEIGHT_LOCAL |
|
|
|
from . import lnsweep |
|
|
|
from .lnwatcher import LNWalletWatcher |
|
|
|
from .lnwatcher import LNWalletWatcher, CHANNEL_OPENING_TIMEOUT |
|
|
|
|
|
|
|
if TYPE_CHECKING: |
|
|
|
from .network import Network |
|
|
@ -674,7 +674,7 @@ class LNWallet(LNWorker): |
|
|
|
break |
|
|
|
else: |
|
|
|
now = int(time.time()) |
|
|
|
if now - chan.storage.get('init_timestamp', 0) > CHANNEL_INIT_TIMEOUT: |
|
|
|
if now - chan.storage.get('init_timestamp', 0) > CHANNEL_OPENING_TIMEOUT: |
|
|
|
self.remove_channel(chan.channel_id) |
|
|
|
|
|
|
|
async def update_open_channel(self, chan, funding_txid, funding_height): |
|
|
|