I'm trying to do the build of [https://github.com/bfosberry/banano/blob/master/server/main.go](https://github.com/bfosberry/banano/blob/master/server/main.go) code and I am getting the following errors: - undefined: spdy.NewTransportListener - undefined: spdy.NoAuthenticator The code is: ``` listener, err := net.Listen("tcp", fmt.Sprintf(":%s", port)) if err != nil { log.Fatal(err) } tl, err := spdy.NewTransportListener(listener, spdy.NoAuthenticator) if err != nil { log.Fatal(err) } ``` This code run with v.0.1.0 of libchain I haven't found documentation of changes to be made in code when we want to migrate to the current version of libchain.
I'm trying to do the build of https://github.com/bfosberry/banano/blob/master/server/main.go code and I am getting the following errors:
The code is:
This code run with v.0.1.0 of libchain
I haven't found documentation of changes to be made in code when we want to migrate to the current version of libchain.