Skip to content

Commit 036ea11

Browse files
authored
Merge pull request #1225 from hackerrdave/update-repo-lightningdevkit
update repo name to use lightningdevkit
2 parents 5655590 + d46c2a2 commit 036ea11

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ jobs:
240240
profile: minimal
241241
- name: Fetch full tree and rebase on upstream
242242
run: |
243-
git remote add upstream https://github.com/rust-bitcoin/rust-lightning
243+
git remote add upstream https://github.com/lightningdevkit/rust-lightning
244244
git fetch upstream
245245
export GIT_COMMITTER_EMAIL="[email protected]"
246246
export GIT_COMMITTER_NAME="RL CI"

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ Communication about Rust-Lightning happens primarily on #ldk-dev on the
2121
Discussion about code base improvements happens in GitHub issues and on pull
2222
requests.
2323

24-
Major projects are tracked [here](https://github.com/rust-bitcoin/rust-lightning/projects).
25-
Major milestones are tracked [here](https://github.com/rust-bitcoin/rust-lightning/milestones?direction=asc&sort=title&state=open).
24+
Major projects are tracked [here](https://github.com/lightningdevkit/rust-lightning/projects).
25+
Major milestones are tracked [here](https://github.com/lightningdevkit/rust-lightning/milestones?direction=asc&sort=title&state=open).
2626

2727
Getting Started
2828
---------------
@@ -33,7 +33,7 @@ This doesn't mean don't be ambitious with the breadth and depth of your contribu
3333
understand the project culture before investing an asymmetric number of hours on
3434
development compared to your merged work.
3535

36-
Browsing through the [meeting minutes](https://github.com/rust-bitcoin/rust-lightning/wiki/Meetings)
36+
Browsing through the [meeting minutes](https://github.com/lightningdevkit/rust-lightning/wiki/Meetings)
3737
is a good first step. You will learn who is working on what, how releases are drafted, what are the
3838
pending tasks to deliver, where you can contribute review bandwidth, etc.
3939

lightning-background-processor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lightning-background-processor"
33
version = "0.0.104"
44
authors = ["Valentine Wallace <[email protected]>"]
55
license = "MIT OR Apache-2.0"
6-
repository = "http://github.com/rust-bitcoin/rust-lightning"
6+
repository = "http://github.com/lightningdevkit/rust-lightning"
77
description = """
88
Utilities to perform required background tasks for Rust Lightning.
99
"""

lightning-block-sync/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lightning-block-sync"
33
version = "0.0.104"
44
authors = ["Jeffrey Czyz", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
6-
repository = "http://github.com/rust-bitcoin/rust-lightning"
6+
repository = "http://github.com/lightningdevkit/rust-lightning"
77
description = """
88
Utilities to fetch the chain data from a block source and feed them into Rust Lightning.
99
"""

lightning-net-tokio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lightning-net-tokio"
33
version = "0.0.104"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/rust-bitcoin/rust-lightning/"
6+
repository = "https://github.com/lightningdevkit/rust-lightning/"
77
description = """
88
Implementation of the rust-lightning network stack using Tokio.
99
For Rust-Lightning clients which wish to make direct connections to Lightning P2P nodes, this is a simple alternative to implementing the required network stack, especially for those already using Tokio.

lightning-persister/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lightning-persister"
33
version = "0.0.104"
44
authors = ["Valentine Wallace", "Matt Corallo"]
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/rust-bitcoin/rust-lightning/"
6+
repository = "https://github.com/lightningdevkit/rust-lightning/"
77
description = """
88
Utilities to manage Rust-Lightning channel data persistence and retrieval.
99
"""

lightning/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "lightning"
33
version = "0.0.104"
44
authors = ["Matt Corallo"]
55
license = "MIT OR Apache-2.0"
6-
repository = "https://github.com/rust-bitcoin/rust-lightning/"
6+
repository = "https://github.com/lightningdevkit/rust-lightning/"
77
description = """
88
A Bitcoin Lightning library in Rust.
99
Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage.

lightning/src/ln/channelmanager.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6372,7 +6372,7 @@ impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
63726372
log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
63736373
log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
63746374
log_error!(args.logger, " Without the latest ChannelMonitor we cannot continue without risking funds.");
6375-
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/rust-bitcoin/rust-lightning");
6375+
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
63766376
return Err(DecodeError::InvalidValue);
63776377
} else if channel.get_cur_holder_commitment_transaction_number() > monitor.get_cur_holder_commitment_number() ||
63786378
channel.get_revoked_counterparty_commitment_transaction_number() > monitor.get_min_seen_secret() ||
@@ -6403,7 +6403,7 @@ impl<'a, Signer: Sign, M: Deref, T: Deref, K: Deref, F: Deref, L: Deref>
64036403
log_error!(args.logger, " The chain::Watch API *requires* that monitors are persisted durably before returning,");
64046404
log_error!(args.logger, " client applications must ensure that ChannelMonitor data is always available and the latest to avoid funds loss!");
64056405
log_error!(args.logger, " Without the ChannelMonitor we cannot continue without risking funds.");
6406-
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/rust-bitcoin/rust-lightning");
6406+
log_error!(args.logger, " Please ensure the chain::Watch API requirements are met and file a bug report at https://github.com/lightningdevkit/rust-lightning");
64076407
return Err(DecodeError::InvalidValue);
64086408
}
64096409
}

0 commit comments

Comments
 (0)