fix lint error

This commit is contained in:
Jinsuk Park 2024-03-12 16:23:36 -07:00
parent 80ec7dcf02
commit acb8edda00
No known key found for this signature in database
GPG key ID: 55BC6A66FEF320E4

View file

@ -218,8 +218,8 @@ func (b *Builder) Bid(builderPubKey phase0.BLSPubKey) (*suavextypes.SubmitBlockR
blockBidMsg := builderV1.BidTrace{
Slot: b.args.Slot,
ParentHash: phase0.Hash32(payload.ParentHash),
BlockHash: phase0.Hash32(payload.BlockHash),
ParentHash: payload.ParentHash,
BlockHash: payload.BlockHash,
BuilderPubkey: builderPubKey,
ProposerPubkey: phase0.BLSPubKey(proposerPubkey),
ProposerFeeRecipient: bellatrix.ExecutionAddress(b.args.FeeRecipient),