main.go: drop it, useless in master branch

Brought by the `dev` merge originally.
This commit is contained in:
Roman Khimov 2019-08-20 18:45:25 +03:00
parent beec8f114a
commit c7bb464b92

20
main.go
View file

@ -1,20 +0,0 @@
package main
import (
"fmt"
"github.com/CityOfZion/neo-go/pkg/server"
"github.com/CityOfZion/neo-go/pkg/wire/protocol"
)
func main() {
s, err := server.New(protocol.MainNet, 10332)
if err != nil {
fmt.Println(err)
return
}
err = s.Run()
if err != nil {
fmt.Println("Server has stopped from the following error: ", err.Error())
}
}