ln: fix opening of channels (NameErrors)

This commit is contained in:
Janus 2018-10-04 15:19:34 +02:00 committed by SomberNight
parent 7d5e1a0932
commit 6be8b5994a
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9

View file

@ -484,7 +484,7 @@ class Peer(PrintError):
chan.set_state('DISCONNECTED')
self.network.trigger_callback('channel', chan)
def make_local_config(self, funding_msat, push_msat, initiator: HTLCOwner, password):
def make_local_config(self, funding_sat, push_msat, initiator: HTLCOwner, password):
# see lnd/keychain/derivation.go
keyfamilymultisig = 0
keyfamilyrevocationbase = 1
@ -520,7 +520,7 @@ class Peer(PrintError):
@aiosafe
async def channel_establishment_flow(self, password, funding_sat, push_msat, temp_channel_id, sweep_address):
await self.initialized
local_config = self.make_local_config(funding_msat, push_msat, LOCAL, password)
local_config = self.make_local_config(funding_sat, push_msat, LOCAL, password)
# amounts
local_feerate = self.current_feerate_per_kw()
# TODO derive this?