We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is an UN-documented setting in bcoin config file called: max-txs
max-txs
I spent a bit trying to figure out why code works with blocksmurfer but not bcoin, and found this to be the case.
I would probably document this in the bcoin example, as others might run into the same issue.
If you do not supply max-txs ( https://github.com/bcoin-org/bcoin/blob/master/lib/node/fullnode.js#L121 ) in bcoin config, the default value is 100 ( https://github.com/bcoin-org/bcoin/blob/master/lib/indexer/addrindexer.js#L122 ), and could be too low in some scenarios. I realize, this is more up-stream's job to document, but maybe it will help somebody ;-)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is an UN-documented setting in bcoin config file called:
max-txs
I spent a bit trying to figure out why code works with blocksmurfer but not bcoin, and found this to be the case.
I would probably document this in the bcoin example, as others might run into the same issue.
If you do not supply
max-txs
( https://github.com/bcoin-org/bcoin/blob/master/lib/node/fullnode.js#L121 ) in bcoin config, the default value is 100 ( https://github.com/bcoin-org/bcoin/blob/master/lib/indexer/addrindexer.js#L122 ), and could be too low in some scenarios. I realize, this is more up-stream's job to document, but maybe it will help somebody ;-)The text was updated successfully, but these errors were encountered: