bitpay / bitcore-node

Extensible full node using Bitcore
https://bitcore.io/
Other
352 stars 644 forks source link

Process 32mb blocks and CTOR #583

Closed cassade closed 6 years ago

cassade commented 6 years ago

CHANGES

NOTES

NodeJS must be executed with --max-old-space-size=8192 option to be able to process 32mb blocks, i.e.:

node --max-old-space-size=8192 index.js start

where index.js:

var bitcore = require('./lib/cli/bitcore');
bitcore();