mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 22:56:40 +00:00
eeca435064
Update vendor Integrate rendezvous into status node Add a test with failover using rendezvous Use multiple servers in client Use discovery V5 by default and test that node can be started with rendezvous discovet Fix linter Update rendezvous client to one with instrumented stream Address feedback Fix test with updated topic limits Apply several suggestions Change log to debug for request errors because we continue execution Remove web3js after rebase Update rendezvous package
15 lines
242 B
Go
15 lines
242 B
Go
// +build !darwin,!linux,!windows,!solaris,!freebsd
|
|
|
|
package gateway
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"runtime"
|
|
)
|
|
|
|
func DiscoverGateway() (ip net.IP, err error) {
|
|
err = fmt.Errorf("DiscoverGateway not implemented for OS %s", runtime.GOOS)
|
|
return
|
|
}
|