node, cmd/clef: report actual port used for http rpc (#20789)

This commit is contained in:
Martin Holst Swende
2020-03-23 16:26:56 +01:00
committed by GitHub
parent a75c0610b7
commit 0734c4b820
2 changed files with 7 additions and 5 deletions

View File

@ -545,12 +545,12 @@ func signer(c *cli.Context) error {
if err != nil {
utils.Fatalf("Could not start RPC api: %v", err)
}
extapiURL = fmt.Sprintf("http://%s", httpEndpoint)
extapiURL = fmt.Sprintf("http://%v/", listener.Addr())
log.Info("HTTP endpoint opened", "url", extapiURL)
defer func() {
listener.Close()
log.Info("HTTP endpoint closed", "url", httpEndpoint)
log.Info("HTTP endpoint closed", "url", extapiURL)
}()
}
if !c.GlobalBool(utils.IPCDisabledFlag.Name) {