Skip to content

Commit

Permalink
clean operatorId output (prints as hex instead of byte array) (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed May 3, 2024
1 parent 501e40a commit f6eb7a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/operatorsinfo/operatorsinfo_inmemory.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ func (ops *OperatorsInfoServiceInMemory) startServiceInGoroutine(ctx context.Con
"G1pubkey", ops.pubkeyDict[operatorAddr].G1Pubkey, "G2pubkey", ops.pubkeyDict[operatorAddr].G2Pubkey,
)
case newSocketRegistrationEvent := <-newSocketRegistrationC:
ops.logger.Debug("Received new socket registration event", "service", "OperatorPubkeysServiceInMemory", "operatorId", newSocketRegistrationEvent.OperatorId, "socket", newSocketRegistrationEvent.Socket)
ops.logger.Debug("Received new socket registration event", "service", "OperatorPubkeysServiceInMemory", "operatorId", types.OperatorId(newSocketRegistrationEvent.OperatorId), "socket", newSocketRegistrationEvent.Socket)
ops.updateSocketMapping(newSocketRegistrationEvent.OperatorId, types.Socket(newSocketRegistrationEvent.Socket))
// Receive a query from GetOperatorPubkeys
case query := <-queryC:
Expand Down

0 comments on commit f6eb7a0

Please sign in to comment.