You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lightning/src/chain/keysinterface.rs
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -37,8 +37,10 @@ use ln::chan_utils;
37
37
use ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript,ChannelPublicKeys,HolderCommitmentTransaction,ChannelTransactionParameters,CommitmentTransaction};
38
38
use ln::msgs::UnsignedChannelAnnouncement;
39
39
40
-
use std::collections::HashSet;
41
-
use std::sync::atomic::{AtomicUsize,Ordering};
40
+
#[macro_use]
41
+
use alloc::{vec, vec::Vec};
42
+
use core::sync::atomic::{AtomicUsize,Ordering};
43
+
usecrate::HashSet;
42
44
use std::io::Error;
43
45
use ln::msgs::{DecodeError,MAX_VALUE_MSAT};
44
46
@@ -850,7 +852,7 @@ impl KeysManager {
850
852
/// onchain output detection for which a corresponding delayed_payment_key must be derived.
0 commit comments