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
If you use this with bitcore-lib-cash you will get issues when trying to sign.
In particular
throw new errors.InvalidArgument(argumentName, message, docsPath); ^ Invalid Argument: First argument should be an instance of PrivateKey
This is because bitcore-message requires bitcore-lib not bitcore-lib-cash as a dependency. Thus they reference a different instance of PrivateKey
Simple fix is to change the bitcore-lib dependency to bitcore-lib-cash to proceed.
Just a pain if you run npm update/install, you will have to change this back each time.
The text was updated successfully, but these errors were encountered:
Thanks, I was able to find this library from your comments https://www.npmjs.com/package/@bookmoons/bitcore-message-cash
Sorry, something went wrong.
No branches or pull requests
If you use this with bitcore-lib-cash you will get issues when trying to sign.
In particular
This is because bitcore-message requires bitcore-lib not bitcore-lib-cash as a dependency. Thus they reference a different instance of PrivateKey
Simple fix is to change the bitcore-lib dependency to bitcore-lib-cash to proceed.
Just a pain if you run npm update/install, you will have to change this back each time.
The text was updated successfully, but these errors were encountered: