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
+19-5Lines changed: 19 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ use util::{byte_utils, transaction_utils};
34
34
use util::ser::{Writeable,Writer,Readable};
35
35
36
36
use chain::transaction::OutPoint;
37
-
use ln::chan_utils;
37
+
use ln::{chan_utils,PaymentPreimage};
38
38
use ln::chan_utils::{HTLCOutputInCommitment, make_funding_redeemscript,ChannelPublicKeys,HolderCommitmentTransaction,ChannelTransactionParameters,CommitmentTransaction,ClosingTransaction};
39
39
use ln::msgs::UnsignedChannelAnnouncement;
40
40
use ln::script::ShutdownScript;
@@ -226,7 +226,14 @@ pub trait BaseSign {
226
226
/// secret won't leave us without a broadcastable holder transaction.
227
227
/// Policy checks should be implemented in this function, including checking the amount
0 commit comments