From: Matt Corallo <649246+TheBlueMatt@users.noreply.github.com> Date: Wed, 13 Jul 2022 01:03:11 +0000 (-0700) Subject: Merge pull request #1542 from ViktorTigerstrom/2022-06-prepare-maps-for-channels... X-Git-Tag: v0.0.110~18 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=fda38196993b22e34ba43f0bb9c94ba842174bf1;p=rust-lightning Merge pull request #1542 from ViktorTigerstrom/2022-06-prepare-maps-for-channels-per-peer Preparations for storing channels per peer --- fda38196993b22e34ba43f0bb9c94ba842174bf1 diff --cc lightning/src/ln/channelmanager.rs index 7db5e386,cc27834f..3e364829 --- a/lightning/src/ln/channelmanager.rs +++ b/lightning/src/ln/channelmanager.rs @@@ -7211,10 -7185,9 +7254,11 @@@ impl<'a, Signer: Sign, M: Deref, T: Der pending_outbound_payments: Mutex::new(pending_outbound_payments.unwrap()), outbound_scid_aliases: Mutex::new(outbound_scid_aliases), + id_to_peer: Mutex::new(id_to_peer), fake_scid_rand_bytes: fake_scid_rand_bytes.unwrap(), + probing_cookie_secret: probing_cookie_secret.unwrap(), + our_network_key, our_network_pubkey, secp_ctx,