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
[email protected] -> swarm.go -> out.addr, err = multiaddr.NewMultiaddr(conn.Addr)
if conn.Addr is a p2p-circuit address like
/ipfs/QmdGQoGuK3pao6bRDqGSDvux5SFHa4kC2XNFfHFcvcbydY/p2p-circuit/ipfs/QmcCnisUqm75ghwMSb8k1dJXvn9d6usK7pd9NzWqDZn8XG
this api will return an err
panic: failed to parse multiaddr "/ipfs/QmdGQoGuK3pao6bRDqGSDvux5SFHa4kC2XNFfHFcvcbydY/p2p-circuit": unknown protocol p2p-circuit
The text was updated successfully, but these errors were encountered:
See #108. The issue is that we need to import github.com/libp2p/go-libp2p-circuit to get the address definition.
Sorry, something went wrong.
Closing as a duplicate.
so quickly, 👍
@godcong do you have time to fix #108 and move the protocol definitions (https://github.com/libp2p/go-libp2p-circuit/blob/master/transport.go#L13-L24)? It's not tricky, just something we need to do.
No branches or pull requests
[email protected] ->
swarm.go ->
out.addr, err = multiaddr.NewMultiaddr(conn.Addr)
if conn.Addr is a p2p-circuit address like
this api will return an err
The text was updated successfully, but these errors were encountered: