Skip to content

Commit a73d564

Browse files
Update to latest RL + fix step numbers + nodeinfo + listpeers commands
1 parent 432106e commit a73d564

File tree

5 files changed

+186
-221
lines changed

5 files changed

+186
-221
lines changed

Cargo.lock

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,35 @@ edition = "2018"
88
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99

1010
[dependencies]
11-
lightning-background-processor = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
12-
# lightning-background-processor = { path = "../rust-lightning/background-processor" }
11+
# lightning-background-processor = { git = "https://github.com/rust-bitcoin/rust-lightning", branch = "main" }
12+
lightning-background-processor = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "d4d322580994857b1222488f8467311d6db61482" }
13+
# lightning-background-processor = { path = "../rust-lightning/lightning-background-processor" }
1314
base64 = "0.13.0"
1415
bitcoin = "0.26"
1516
bitcoin-bech32 = "0.7"
1617
bech32 = "0.7"
1718
hex = "0.3"
18-
lightning = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
19+
20+
# lightning = { git = "https://github.com/rust-bitcoin/rust-lightning", branch = "main" }
21+
lightning = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "d4d322580994857b1222488f8467311d6db61482" }
1922
# lightning = { path = "../rust-lightning/lightning" }
20-
lightning-block-sync = { git = "https://github.com/rust-bitcoin/rust-lightning", features = ["rpc-client"], rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
23+
24+
# lightning-block-sync = { git = "https://github.com/rust-bitcoin/rust-lightning", features = ["rpc-client"], branch = "main" }
25+
lightning-block-sync = { git = "https://github.com/rust-bitcoin/rust-lightning", features = ["rpc-client"], rev = "d4d322580994857b1222488f8467311d6db61482" }
2126
# lightning-block-sync = { path = "../rust-lightning/lightning-block-sync", features = ["rpc-client"] }
22-
lightning-invoice = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
23-
lightning-net-tokio = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
27+
28+
# lightning-invoice = { git = "https://github.com/rust-bitcoin/rust-lightning", branch = "main" }
29+
lightning-invoice = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "d4d322580994857b1222488f8467311d6db61482" }
30+
# lightning-invoice = { path = "../rust-lightning/lightning-invoice" }
31+
32+
# lightning-net-tokio = { git = "https://github.com/rust-bitcoin/rust-lightning", branch = "main" }
33+
lightning-net-tokio = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "d4d322580994857b1222488f8467311d6db61482" }
2434
# lightning-net-tokio = { path = "../rust-lightning/lightning-net-tokio" }
25-
lightning-persister = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "3d51b11fe99c9d6a41b0d662efdf5693d9600552" }
35+
36+
# lightning-persister = { git = "https://github.com/rust-bitcoin/rust-lightning", branch = "main" }
37+
lightning-persister = { git = "https://github.com/rust-bitcoin/rust-lightning", rev = "d4d322580994857b1222488f8467311d6db61482" }
2638
# lightning-persister = { path = "../rust-lightning/lightning-persister" }
39+
2740
time = "0.2"
2841
rand = "0.4"
2942
serde_json = { version = "1.0" }

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ hard_tabs = true # use tab characters for indentation, spaces for alignment
22
use_field_init_shorthand = true
33
max_width = 100
44
use_small_heuristics = "Max"
5-
fn_args_layout = "Compressed"
5+
fn_args_layout = "Compressed"

0 commit comments

Comments
 (0)