Open reqlez opened 1 year ago
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 ;-)
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 ;-)