forked from TrueCloudLab/neoneo-go
ddd1d92ff1
The idea here is to preserve the history of `dev` branch development and its code when merging with the `master`. Later this code could be moved into the masters code where appropriate.
7 lines
246 B
Go
7 lines
246 B
Go
package server
|
|
|
|
// etAddress will return a viable address to connect to
|
|
// Currently it is hardcoded to be one neo node until address manager is implemented
|
|
func (s *Server) getAddress() (string, error) {
|
|
return "seed1.ngd.network:10333", nil
|
|
}
|