fix undefined n

pull/17694/head
absolutelightning 1 year ago
parent 796a88a952
commit a39760aeec

@ -42,7 +42,7 @@ func makeBootstrapPipe(bootstrapJSON []byte) (string, error) {
} }
// Write the config // Write the config
n, err = pipeConn.Write(bootstrapJSON) n, err := pipeConn.Write(bootstrapJSON)
if err != nil { if err != nil {
return pipeFile, err return pipeFile, err
} }

Loading…
Cancel
Save