Compare commits

...

1 Commits
eas ... fixE2E

Author SHA1 Message Date
nisdas
aa1327701e fix it 2024-04-09 13:33:30 +08:00
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ func (s *Service) buildOptions(ip net.IP, priKey *ecdsa.PrivateKey) ([]libp2p.Op
return nil, errors.Wrapf(err, "cannot get ID from public key: %s", ifaceKey.GetPublic().Type().String())
}
log.WithField("peerId", id).Info("Running node with")
log.WithField("peerId", id).Info("Running node with id")
options := []libp2p.Option{
privKeyOption(priKey),

View File

@@ -315,7 +315,7 @@ func (node *BeaconNode) Start(ctx context.Context) error {
}
if config.UseFixedPeerIDs {
peerId, err := helpers.FindFollowingTextInFile(stdOutFile, "Running node with peerId=")
peerId, err := helpers.FindFollowingTextInFile(stdOutFile, "Running node with id")
if err != nil {
return fmt.Errorf("could not find peer id: %w", err)
}