Skip to content

Commit 7eca7fb

Browse files
committed
Add copyright notices where they were missing
Previously, only a few files included coypright headers. Here, we fix the omission and add the headers to all files where they were absent.
1 parent 648058e commit 7eca7fb

39 files changed

+269
-14
lines changed

bindings/uniffi-bindgen/src/main.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
fn main() {
29
uniffi::uniffi_bindgen_main()
310
}

build.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
fn main() {
29
#[cfg(feature = "uniffi")]
310
uniffi::generate_scaffolding("bindings/ldk_node.udl").unwrap();

src/balance.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::sweep::value_satoshis_from_descriptor;
29

310
use lightning::chain::channelmonitor::Balance as LdkBalance;

src/builder.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::config::{
29
default_user_config, Config, BDK_CLIENT_CONCURRENCY, BDK_CLIENT_STOP_GAP,
310
DEFAULT_ESPLORA_CLIENT_TIMEOUT_SECS, DEFAULT_ESPLORA_SERVER_URL, WALLET_KEYS_SEED_LEN,

src/config.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::payment::SendingParameters;
29

310
use lightning::ln::msgs::SocketAddress;

src/connection.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::logger::{log_error, log_info, Logger};
29
use crate::types::PeerManager;
310
use crate::Error;

src/error.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use std::fmt;
29

310
#[derive(Copy, Clone, Debug, PartialEq, Eq)]

src/event.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::types::{DynStore, Sweeper, Wallet};
29

310
use crate::{

src/fee_estimator.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::config::FEE_RATE_CACHE_UPDATE_TIMEOUT_SECS;
29
use crate::logger::{log_error, log_trace, Logger};
310
use crate::{Config, Error};

src/gossip.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::config::RGS_SYNC_TIMEOUT_SECS;
29
use crate::logger::{log_trace, FilesystemLogger, Logger};
310
use crate::types::{GossipSync, Graph, P2PGossipSync, RapidGossipSync};

src/graph.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Objects for querying the network graph.
29
310
use crate::types::Graph;

src/hex_utils.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use std::fmt::Write;
29

310
#[cfg(feature = "uniffi")]

src/io/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Objects and traits for data persistence.
29
310
pub mod sqlite_store;

src/io/sqlite_store/migrations.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use rusqlite::Connection;
29

310
use lightning::io;

src/io/sqlite_store/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Objects related to [`SqliteStore`] live here.
29
use crate::io::utils::check_namespace_key_validity;
310

src/io/test_utils.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use lightning::ln::functional_test_utils::{
29
connect_block, create_announced_chan_between_nodes, create_chanmon_cfgs, create_dummy_block,
310
create_network, create_node_cfgs, create_node_chanmgrs, send_payment,

src/io/utils.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use super::*;
29
use crate::config::WALLET_KEYS_SEED_LEN;
310

src/io/vss_store.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use io::Error;
29
use std::io;
310
use std::io::ErrorKind;

src/lib.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
// This file is Copyright its original authors, visible in version contror
2-
// history.
1+
// This file is Copyright its original authors, visible in version control history.
32
//
4-
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5-
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7-
// You may not use this file except in accordance with one or both of these
8-
// licenses.
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.
97

108
#![crate_name = "ldk_node"]
119

src/liquidity.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::logger::{log_debug, log_error, log_info, Logger};
29
use crate::types::{ChannelManager, KeysManager, LiquidityManager, PeerManager};
310
use crate::{Config, Error};

src/logger.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
pub(crate) use lightning::util::logger::Logger;
29
pub(crate) use lightning::{log_bytes, log_debug, log_error, log_info, log_trace};
310

src/message_handler.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::liquidity::LiquiditySource;
29

310
use lightning::ln::features::{InitFeatures, NodeFeatures};

src/payment/bolt11.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Holds a payment handler allowing to create and pay [BOLT 11] invoices.
29
//!
310
//! [BOLT 11]: https://github.com/lightning/bolts/blob/master/11-payment-encoding.md

src/payment/bolt12.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Holds a payment handler allowing to create and pay [BOLT 12] offers and refunds.
29
//!
310
//! [BOLT 12]: https://github.com/lightning/bolts/blob/master/12-offer-encoding.md

src/payment/mod.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Objects for different types of payments.
29
310
mod bolt11;

src/payment/onchain.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Holds a payment handler allowing to send and receive on-chain payments.
29
310
use crate::config::Config;

src/payment/spontaneous.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! Holds a payment handler allowing to send spontaneous ("keysend") payments.
29
310
use crate::config::{Config, LDK_PAYMENT_RETRY_TIMEOUT};

src/payment/store.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::hex_utils;
29
use crate::io::{
310
PAYMENT_INFO_PERSISTENCE_PRIMARY_NAMESPACE, PAYMENT_INFO_PERSISTENCE_SECONDARY_NAMESPACE,

src/payment/unified_qr.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
// This file is Copyright its original authors, visible in version control
2-
// history.
1+
// This file is Copyright its original authors, visible in version control history.
32
//
4-
// This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5-
// or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6-
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7-
// You may not use this file except in accordance with one or both of these
8-
// licenses.
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.
97

108
//! Holds a payment handler allowing to create [BIP 21] URIs with an on-chain, [BOLT 11], and [BOLT 12] payment
119
//! options.

src/peer_store.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::io::{
29
PEER_INFO_PERSISTENCE_KEY, PEER_INFO_PERSISTENCE_PRIMARY_NAMESPACE,
310
PEER_INFO_PERSISTENCE_SECONDARY_NAMESPACE,

src/sweep.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
//! The output sweeper used to live here before we upstreamed it to `rust-lightning` and migrated
29
//! to the upstreamed version with LDK Node v0.3.0 (May 2024). We should drop this module entirely
310
//! once sufficient time has passed for us to be confident any users completed the migration.

src/tx_broadcaster.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::config::TX_BROADCAST_TIMEOUT_SECS;
29
use crate::logger::{log_bytes, log_error, log_trace, Logger};
310

src/types.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::logger::FilesystemLogger;
29
use crate::message_handler::NodeCustomMessageHandler;
310

src/uniffi_types.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
// Importing these items ensures they are accessible in the uniffi bindings
29
// without introducing unused import warnings in lib.rs.
310
//

src/wallet.rs

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
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
use crate::logger::{log_error, log_info, log_trace, Logger};
29

310
use crate::config::BDK_WALLET_SYNC_TIMEOUT_SECS;

0 commit comments

Comments
 (0)