-
Notifications
You must be signed in to change notification settings - Fork 23
Isolate indexes #37
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
Isolate indexes #37
Conversation
example/service.js
Outdated
let debugZmq = require('debug')('service:zmq') | ||
let debugZmqTx = require('debug')('service:zmq:tx') | ||
// let indexd = require('indexd') // XXX: you should use npm published package typically | ||
let indexd = require('../') | ||
let Indexd = require('../indexd') // FIXME: use require('indexd') in production |
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.
This line change breaks the example.
I think it should be:
let Indexd = require('../')
This is definitely an exciting PR. Great work!! I was testing this modification and I think the example service is broken. I made a note on one problem that I found. I think there is still another problem in the example. I got an error in the socket.js file inside of the example. See below:
|
@KryptoNova indeed thanks for testing! The PR is still WIP, but it is nearly done. |
830d723
to
4cf7763
Compare
@KryptoNova go! This is ready for testing now. I am using it for bitcoinjs' regtest server for integration testing, which is where I have moved the |
No description provided.