Merge pull request #9824 from filecoin-project/fix/miner-startup-bin-log

fix: don't log sp address in binary on node startup
This commit is contained in:
Geoff Stuart 2022-12-09 16:16:40 -05:00 committed by GitHub
commit 2f8cdb4c4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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
}})