Enable txindex=1 as default #37
No reviewers
Labels
No labels
ci
claimtrie
consider soon
Epic
good first issue
hacktoberfest
help wanted
mempool
mining
peer
priority: blocker
priority: high
priority: low
priority: medium
rpc
runtime
test
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
ux
wallet
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/lbcd#37
Loading…
Reference in a new issue
No description provided.
Delete branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Curently running lbcd inside docker do not enable txindex support with is required for most apps/services.
This PR adds txindex=1 to config file during build process to enable it by default.
Pull Request Test Coverage Report for Build 2316428179
💛 - Coveralls
The
docker-publish.yml
is a nice new add, which we should create a separate PR on its own. It would be great to parameterize (using inputs) the repo to push (default tolbry/lbcd
), and the image tag. This allows us to publish official images as well as generate intermediate images during development and testing.Regarding enabling
txindex
as default (which I just updated the title), we need to update multiple places (code, docs, instructions, configs) to keep things coherent.grep txindex in the source code
@ -379,4 +379,1 @@
; Write memory profile to the specified file.
; memprofile=
; The port used to listen for HTTP profile requests. The profile server will
We can revert this change now as line 300 already has a commented entry
txindex=1
, which should have beentxindex=0
.The desired semantic in the sample-lbcd.conf is to have a commented entry showing default value for every setting.
Since now we're enabling it, leaving that commented out
txindex=1
Edited the config also added docker action for building testing and pushing containers though you might need make own edits.
Pull request closed