Merge pull request #82 from filecoin-project/fix/gofmt

gofmt
This commit is contained in:
Łukasz Magiera 2019-07-25 14:54:49 +02:00 committed by GitHub
commit 14be8d68a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 9 deletions

View File

@ -76,7 +76,7 @@ var runCmd = &cli.Command{
ah := &auth.Handler{
Verify: minerapi.AuthVerify,
Next: rpcServer.ServeHTTP,
Next: rpcServer.ServeHTTP,
}
http.Handle("/rpc/v0", ah)

View File

@ -14,7 +14,7 @@ func serveRPC(a api.FullNode, addr string) error {
ah := &auth.Handler{
Verify: a.AuthVerify,
Next: rpcServer.ServeHTTP,
Next: rpcServer.ServeHTTP,
}
http.Handle("/rpc/v0", ah)

View File

@ -67,7 +67,7 @@ type client struct {
namespace string
requests chan clientRequest
idCtr int64
idCtr int64
}
// NewMergeClient is like NewClient, but allows to specify multiple structs
@ -143,7 +143,7 @@ func (c *client) makeOutChan(ctx context.Context, ftyp reflect.Type, valOut int)
}
ch.Send(val.Elem()) // todo: select on ctx is probably a good idea
}
}
}
return func() reflect.Value { return retVal }, chCtor
@ -192,12 +192,12 @@ type rpcFunc struct {
ftyp reflect.Type
name string
nout int
nout int
valOut int
errOut int
hasCtx int
retCh bool
retCh bool
}
func (fn *rpcFunc) processResponse(resp clientResponse, rval reflect.Value) []reflect.Value {
@ -290,8 +290,8 @@ func (c *client) makeRpcFunc(f reflect.StructField) (reflect.Value, error) {
fun := &rpcFunc{
client: c,
ftyp: ftyp,
name: f.Name,
ftyp: ftyp,
name: f.Name,
}
fun.valOut, fun.errOut, fun.nout = processFuncOut(ftyp)

View File

@ -42,7 +42,6 @@ func (s *RPCServer) handleWS(ctx context.Context, w http.ResponseWriter, r *http
w.Header().Set("Sec-WebSocket-Protocol", r.Header.Get("Sec-WebSocket-Protocol"))
}
c, err := upgrader.Upgrade(w, r, nil)
if err != nil {
log.Error(err)