mirror of
https://source.quilibrium.com/quilibrium/ceremonyclient.git
synced 2024-11-15 04:35:17 +00:00
11 lines
329 B
Go
11 lines
329 B
Go
// riscv64 see: https://github.com/marten-seemann/tcp/pull/1
|
|
|
|
//go:build windows || riscv64 || loong64
|
|
|
|
package tcp
|
|
|
|
import manet "github.com/multiformats/go-multiaddr/net"
|
|
|
|
func newTracingConn(c manet.Conn, _ bool) (manet.Conn, error) { return c, nil }
|
|
func newTracingListener(l manet.Listener) manet.Listener { return l }
|