Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
avalonche committed Apr 8, 2024
1 parent 44efc95 commit 8c154ef
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions beaconclient/prod_beacon_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,9 @@ func (c *ProdBeaconInstance) PublishBlock(block *common.VersionedSignedProposal,
code, err = fetchBeacon(http.MethodPost, uri, payloadBytes, nil, nil, headers, useSSZ)
publishDurationMs := time.Now().UTC().Sub(publishingStartTime).Milliseconds()
log.WithFields(logrus.Fields{
"encodeDurationMs": encodeTime,
"publishDurationMs": publishTime,
"payloadBytes": len(payloadBytes),
"encodeDurationMs": encodeDurationMs,
"publishDurationMs": publishDurationMs,
"payloadBytes": len(payloadBytes),
}).Info("finished publish block request")
return code, err
}
Expand Down

0 comments on commit 8c154ef

Please sign in to comment.