-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add DotNetLightning.ClnRpc #186
Merged
Merged
Conversation
This file contains 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
Before this get merged, I must review and merge #184 |
joemphilips
force-pushed
the
add_cln_client
branch
from
April 24, 2022 07:14
22ff28b
to
a6020a4
Compare
joemphilips
force-pushed
the
add_cln_client
branch
from
April 24, 2022 07:29
a6020a4
to
19e9a1a
Compare
knocte
reviewed
Apr 24, 2022
knocte
reviewed
Apr 24, 2022
This comment was marked as outdated.
This comment was marked as outdated.
joemphilips
force-pushed
the
add_cln_client
branch
3 times, most recently
from
April 28, 2022 01:42
a1487cd
to
014ec72
Compare
To prevent the |
joemphilips
force-pushed
the
add_cln_client
branch
7 times, most recently
from
May 2, 2022 13:04
b3fa544
to
92f348b
Compare
joemphilips
force-pushed
the
add_cln_client
branch
9 times, most recently
from
May 7, 2022 11:03
1c35015
to
be54944
Compare
joemphilips
force-pushed
the
add_cln_client
branch
3 times, most recently
from
May 19, 2022 01:10
598b431
to
6d59300
Compare
joemphilips
force-pushed
the
add_cln_client
branch
2 times, most recently
from
May 19, 2022 04:47
27f83f3
to
3f10d82
Compare
This commit adds a new project for calling c-lightning from .NET in a typesafe way. Most of the codes are auto-generated from client generator built in ref: ElementsProject/lightning#5201 It must be updated after ElementsProject/lightning#5216 gets merged. So that all the generation logics is defined in this repo. But this is good enough for temporary solution.
This was originally necessary for private nuget feed. But since we stopped using it long time ago, it is no longer needed.
It also start supporting injecting transport stream from outside. These are necessary for building plugin.
joemphilips
force-pushed
the
add_cln_client
branch
2 times, most recently
from
May 19, 2022 05:47
d9b3930
to
1bf11f1
Compare
Sometimes the test hangs only in CI environment. This option shall make our life easier by aborting early.
joemphilips
force-pushed
the
add_cln_client
branch
from
May 19, 2022 10:01
1bf11f1
to
5663200
Compare
* Since it does not work in CI environment
joemphilips
force-pushed
the
add_cln_client
branch
2 times, most recently
from
May 19, 2022 10:21
94dbdfd
to
70aabd0
Compare
joemphilips
force-pushed
the
add_cln_client
branch
from
May 19, 2022 10:23
70aabd0
to
67f4111
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This commit adds a new project for calling c-lightning from .NET
in a typesafe way.
Most of the codes are auto-generated from client generator built in
ref: ElementsProject/lightning#5201
It must be updated after ElementsProject/lightning#5216 gets merged.
So that all the generation logics is defined in this repo.
But this is good enough for temporary solution.