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
impl
I am attempting to generate the stubs for the Node interface but I get a not an interface: blocks.Block:
Node
not an interface: blocks.Block
import ( blocks "github.com/ipfs/go-block-format" ) type Node interface { blocks.Block Resolver // snipped for brevity }
From the blocks package:
// Block provides abstraction for blocks implementations. type Block interface { RawData() []byte Cid() *cid.Cid String() string Loggable() map[string]interface{} }
The text was updated successfully, but these errors were encountered:
Is there any fix on this?
Sorry, something went wrong.
Nope, although I would be happy to review a PR.
:GoImpl
No branches or pull requests
I am attempting to generate the stubs for the
Node
interface but I get anot an interface: blocks.Block
:From the blocks package:
The text was updated successfully, but these errors were encountered: