Skip to content

Commit f9aba3e

Browse files
committed
Process events with BackgroundProcessor
1 parent 3f92528 commit f9aba3e

File tree

3 files changed

+159
-183
lines changed

3 files changed

+159
-183
lines changed

Cargo.lock

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

Cargo.toml

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

1010
[dependencies]
11-
lightning = { version = "0.0.14", git = "https://github.com/rust-bitcoin/rust-lightning" }
12-
lightning-block-sync = { version = "0.0.14", git = "https://github.com/rust-bitcoin/rust-lightning", features = [ "rpc-client" ] }
13-
lightning-invoice = { version = "0.5", git = "https://github.com/rust-bitcoin/rust-lightning" }
14-
lightning-net-tokio = { version = "0.0.14", git = "https://github.com/rust-bitcoin/rust-lightning" }
15-
lightning-persister = { version = "0.0.14", git = "https://github.com/rust-bitcoin/rust-lightning" }
16-
lightning-background-processor = { version = "0.0.14", git = "https://github.com/rust-bitcoin/rust-lightning" }
11+
lightning = { version = "0.0.14", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing" }
12+
lightning-block-sync = { version = "0.0.14", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing", features = [ "rpc-client" ] }
13+
lightning-invoice = { version = "0.5", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing" }
14+
lightning-net-tokio = { version = "0.0.14", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing" }
15+
lightning-persister = { version = "0.0.14", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing" }
16+
lightning-background-processor = { version = "0.0.14", git = "https://github.com/jkczyz/rust-lightning", branch = "2021-05-event-processing" }
1717

1818
base64 = "0.13.0"
1919
bitcoin = "0.26"
@@ -25,7 +25,7 @@ futures = "0.3"
2525
time = "0.2"
2626
rand = "0.4"
2727
serde_json = { version = "1.0" }
28-
tokio = { version = "1.0", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
28+
tokio = { version = "1.5", features = [ "io-util", "macros", "rt", "rt-multi-thread", "sync", "net", "time" ] }
2929

3030
[profile.release]
3131
panic = "abort"

0 commit comments

Comments
 (0)