File tree Expand file tree Collapse file tree 5 files changed +35
-0
lines changed
lightning-transaction-sync/src Expand file tree Collapse file tree 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+
18use bitcoin:: block:: Header ;
29use bitcoin:: { BlockHash , OutPoint , Transaction , Txid } ;
310use 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+
18use crate :: common:: { ConfirmedTx , FilterQueue , SyncState } ;
29use crate :: error:: { InternalError , TxSyncError } ;
310
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+
18use std:: fmt;
29
310#[ 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+
18use crate :: common:: { ConfirmedTx , FilterQueue , SyncState } ;
29use crate :: error:: { InternalError , TxSyncError } ;
310
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+
18//! Provides utilities for syncing LDK via the transaction-based [`Confirm`] interface.
29//!
310//! 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