-
-
Notifications
You must be signed in to change notification settings - Fork 2
Bitcoin full node support #59
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
Draft
AnotherDroog
wants to merge
37
commits into
master
Choose a base branch
from
fullnode
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 35 commits
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
1108a07
Add preliminary full-node config
AnotherDroog c10c25e
Enable full-node by default
AnotherDroog 8377652
Remove unused compose file
AnotherDroog 18671b5
Switch lnd mode
AnotherDroog 91d85e4
Replace docker logs with dynamic command
AnotherDroog c035f73
Amend lnd and bitcoind config
AnotherDroog d04091d
.gitignore: Ignore bitcoin directories
AnotherDroog 5f3cf97
config.py: Add bitcoin & invoicer
AnotherDroog 431b107
bitcoind.py: Generate rpcauth for bitcoin and invoicer
AnotherDroog 722dccc
setup.py: Add configobj dependency
AnotherDroog 4f56cbf
Fixes for pylint
AnotherDroog 844adcb
bitcoind.py: Ensure utf-8 and clean up
AnotherDroog 2dc7b8f
Only change rpcauth if unset
AnotherDroog d610ea9
Set rpcauth automatically on start
AnotherDroog 2a3207e
Original commit of ConfigObj
AnotherDroog f3a760c
Let ConfigObj accept variable delimiters
AnotherDroog 5917e1d
Improve error handling
AnotherDroog 367882a
Normalize configs and expose datadir to compose
AnotherDroog 6c4adac
setup.py: Remove configobj dependency since it is in tree
AnotherDroog f687ad1
setup.py: Add toml dependency
AnotherDroog e4148fe
noma.yml: Only run flake8 on noma
AnotherDroog b263145
noma.yml: Only run flake8 on noma
AnotherDroog ee1bbd2
release.yml: Only run flake8 on noma
AnotherDroog 9681eaa
setup.py: Add configobj package
AnotherDroog c0289bd
Merge remote-tracking branch 'origin/fullnode' into fullnode
AnotherDroog 0373237
invoicer.conf: Normalize format
AnotherDroog f210ccb
bitcoind.py: Handle toml config files
AnotherDroog b7a4245
setup.py: Pin requests version
AnotherDroog 8244183
docker-compose.yml: Bump bitcoind version to 0.18.1
AnotherDroog ebd0421
setup.py: Add comment for ConfigObj
AnotherDroog c414ddd
install.py: Add comment for WIP
AnotherDroog c79b046
lnd.conf: Remove redundant setting
AnotherDroog 3e03169
bitcoind.py: Make section argument optional
AnotherDroog 7fd5417
bitcoind.py: Update docstring
AnotherDroog 082cd92
bitcoind.py: refactor WIP
AnotherDroog bd0614c
fix KeyError
62651c4
Merge pull request #72 from ln2max/fullnode-fix
ln2max 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
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,5 +1,8 @@ | ||
| # lnd | ||
| lnd/neutrino/ | ||
| lnd/ | ||
|
|
||
| # bitcoin | ||
| bitcoind/ | ||
|
|
||
| # PyCharm | ||
| .idea | ||
|
|
||
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 was deleted.
Oops, something went wrong.
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 |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| version: '3.7' | ||
| services: | ||
| bitcoind: | ||
| image: lncm/bitcoind:v0.18.1 | ||
| entrypoint: bitcoind | ||
| volumes: | ||
| - /media/noma/bitcoind:/root/.bitcoin | ||
AnotherDroog marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - /media/noma/bitcoind:/datadir | ||
| restart: on-failure | ||
| network_mode: host | ||
|
|
||
| lnd: | ||
| image: lncm/lnd:0.7.1-experimental-watchtower-neutrino | ||
| volumes: | ||
| - /media/noma/lnd/fullnode:/root/.lnd | ||
| - /media/noma/lnd/fullnode/lnd.conf:/home/lncm/.lnd/lnd.conf | ||
| restart: on-failure | ||
| network_mode: host | ||
|
|
||
| invoicer: | ||
| image: lncm/invoicer:v0.6.2 | ||
| volumes: | ||
| - /media/noma/invoicer:/root/.lncm | ||
| - /media/noma/lnd/fullnode:/lnd | ||
| - /media/noma/public_html:/static | ||
| - /media/noma/invoicer:/logs | ||
| depends_on: | ||
| - bitcoind | ||
| - lnd | ||
| restart: on-failure | ||
| network_mode: host | ||
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.
What are the
--select=????things? Could you tl;dr in a comment above?