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
gno/tm2/pkg/p2p/transport.go
Lines 248 to 251 in 2838ad1
Lines 240 to 261 in 2838ad1
Please invoke ln.Close() or please use Go's named returns to help you unconditionally errors so
func (mt *MultiplexTransport) Listen(addr NetAddress) (rerr error) { ln, err := net.Listen("tcp", addr.DialString()) if err != nil { return err } defer func() { if rerr != nil { ln.Close() } }()
The text was updated successfully, but these errors were encountered:
Thanks for the report, @odeke-em. We're looking into it.
Sorry, something went wrong.
kristovatlas
No branches or pull requests
gno/tm2/pkg/p2p/transport.go
Lines 248 to 251 in 2838ad1
gno/tm2/pkg/p2p/transport.go
Lines 240 to 261 in 2838ad1
Remedy
Please invoke ln.Close() or please use Go's named returns to help you unconditionally errors so
The text was updated successfully, but these errors were encountered: