fix: don't log sp address in binary on node startup

This commit is contained in:
Łukasz Magiera 2022-12-09 10:27:33 +01:00
parent a10c014ba6
commit 1234647b9d

View File

@ -233,7 +233,7 @@ func PreflightChecks(mctx helpers.MetricsCtx, lc fx.Lifecycle, api v1api.FullNod
return xerrors.New("key for worker not found in local wallet")
}
log.Infof("starting up miner %s, worker addr %s", maddr, workerKey)
log.Infof("starting up miner %s, worker addr %s", address.Address(maddr), workerKey)
return nil
}})