fix undefined name 'CHANNEL_INIT_TIMEOUT'

This commit is contained in:
SomberNight 2020-02-24 15:12:27 +01:00
parent a78583e5d4
commit 3966b51a94
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -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):