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
Module path is inconsistent with go import path. GO111MODULE=on, as doc said, import "github.com/toorop/go-bitcoind", then get this error:
go: finding module for package github.com/toorop/go-bitcoind go: downloading github.com/toorop/go-bitcoind v0.0.0-20191125160357-28204734ac83 go: found github.com/toorop/go-bitcoind in github.com/toorop/go-bitcoind v0.0.0-20191125160357-28204734ac83 go: test1 imports github.com/toorop/go-bitcoind: github.com/toorop/[email protected]: parsing go.mod: module declares its path as: github.com/vpashka/go-bitcoind but was required as: github.com/toorop/go-bitcoind
module github.com/toorop/go-bitcoind go 1.12
The text was updated successfully, but these errors were encountered:
@vpashka Could you help me review this issue? Thx :p
Sorry, something went wrong.
Yes. There is a fix here https://github.com/toorop/go-bitcoind/pull/25/files
@vpashka Thanks for your efforts and feedback.
No branches or pull requests
Background
Module path is inconsistent with go import path.
GO111MODULE=on, as doc said, import "github.com/toorop/go-bitcoind", then get this error:
Solution
Fix the module path:
The text was updated successfully, but these errors were encountered: