-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Allowing the option to skip the creation of the wallet in bitcoind
A few years ago, I added this code for compatibility with Bitcoin Core 21. Now that I am integrating it with the LDK node runner, and LDK can use a wallet to set up a node with Bitcoin Core, we need a way to disable the wallet from Bitcoin Core to keep our integration simpler. Without this change, Bitcoin Core would have two wallets, and we would need to set up the correct wallet in our architecture. However, we can simply disable it to avoid this issue. Signed-off-by: Vincenzo Palazzo <[email protected]>
- Loading branch information
1 parent
1ecb70c
commit 45711de
Showing
4 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "lnprototest" | ||
version = "0.0.4" | ||
version = "0.0.5-beta.2" | ||
description = "Spec protocol tests for lightning network implementations" | ||
authors = ["Rusty Russell <[email protected]>", "Vincenzo Palazzo <[email protected]>"] | ||
license = "MIT" | ||
|
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