File tree 5 files changed +35
-0
lines changed
lightning-transaction-sync/src
5 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
1
+ // This file is Copyright its original authors, visible in version control history.
2
+ //
3
+ // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5
+ // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6
+ // accordance with one or both of these licenses.
7
+
1
8
use bitcoin:: block:: Header ;
2
9
use bitcoin:: { BlockHash , OutPoint , Transaction , Txid } ;
3
10
use lightning:: chain:: channelmonitor:: ANTI_REORG_DELAY ;
Original file line number Diff line number Diff line change
1
+ // This file is Copyright its original authors, visible in version control history.
2
+ //
3
+ // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5
+ // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6
+ // accordance with one or both of these licenses.
7
+
1
8
use crate :: common:: { ConfirmedTx , FilterQueue , SyncState } ;
2
9
use crate :: error:: { InternalError , TxSyncError } ;
3
10
Original file line number Diff line number Diff line change
1
+ // This file is Copyright its original authors, visible in version control history.
2
+ //
3
+ // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5
+ // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6
+ // accordance with one or both of these licenses.
7
+
1
8
use std:: fmt;
2
9
3
10
#[ derive( Debug ) ]
Original file line number Diff line number Diff line change
1
+ // This file is Copyright its original authors, visible in version control history.
2
+ //
3
+ // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5
+ // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6
+ // accordance with one or both of these licenses.
7
+
1
8
use crate :: common:: { ConfirmedTx , FilterQueue , SyncState } ;
2
9
use crate :: error:: { InternalError , TxSyncError } ;
3
10
Original file line number Diff line number Diff line change
1
+ // This file is Copyright its original authors, visible in version control history.
2
+ //
3
+ // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
4
+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5
+ // http://opensource.org/licenses/MIT>, at your option. You may not use this file except in
6
+ // accordance with one or both of these licenses.
7
+
1
8
//! Provides utilities for syncing LDK via the transaction-based [`Confirm`] interface.
2
9
//!
3
10
//! The provided synchronization clients need to be registered with a [`ChainMonitor`] via the
You can’t perform that action at this time.
0 commit comments