This repository was archived by the owner on Jan 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Jit channels clean #20
Merged
tnull
merged 16 commits into
lightningdevkit:main
from
johncantrell97:jit-channels-clean
Oct 30, 2023
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
9e33ddd
update ldk to 117
johncantrell97 5a5c99e
add LSPS2 messages
johncantrell97 56601c7
add LSPS2 events
johncantrell97 0c903f9
add LSPS2 message handler
johncantrell97 e3a6ee2
setup LSPS2 message handler in LiquidityManager
johncantrell97 1fbedb7
expose lsps2 api in LiquidityManager
johncantrell97 9c954cc
expose types to lib users
johncantrell97 7c18cb1
fix review comments
johncantrell97 8a61a5e
disable default chrono features to remove wasm-bindgen dep
johncantrell97 ae6fd6a
add myself as an author
johncantrell97 b8c2157
add version check to handling of buy request
johncantrell97 cc4f009
move payment_size ranges to config and handle buy request validation
johncantrell97 795a097
add valid_until check into is_valid_opening_fee_params
johncantrell97 a3259cc
remove memchr pin
johncantrell97 53d4a20
use SystemTime instead of chrono with clock to test validity
johncantrell97 646d54f
pin chrono 0.4.24
johncantrell97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
[package] | ||
name = "ldk-lsp-client" | ||
version = "0.1.0" | ||
authors = ["Elias Rohrer <[email protected]>"] | ||
authors = ["John Cantrell <[email protected]>", "Elias Rohrer <[email protected]>"] | ||
edition = "2018" | ||
description = "Types and primitives to integrate a spec-compliant LSP with an LDK-based node." | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
lightning = { version = "0.0.116", features = ["max_level_trace", "std"] } | ||
lightning-invoice = "0.24.0" | ||
lightning-net-tokio = "0.0.116" | ||
lightning = { version = "0.0.117", default-features = false, features = ["max_level_trace", "std"] } | ||
lightning-invoice = "0.25.0" | ||
|
||
bitcoin = "0.29.0" | ||
|
||
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] } | ||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | ||
serde_json = "1.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems we don't actually require full
std
here,alloc
should be enough.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Now tracking here: #29 (comment)