Skip to content

Commit

Permalink
Fix Entity implementation for rpcSentEntity
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-malachyn committed Jan 17, 2025
1 parent 8c170e3 commit 96aa46f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion network/p2p/tracer/internal/rpc_sent_entity.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func (r rpcSentEntity) ID() flow.Identifier {
// Checksum returns the node ID of the sender, it does not have any purpose in the cache.
// It is implemented to satisfy the flow.Entity interface.
func (r rpcSentEntity) Checksum() flow.Identifier {
return r.messageID
return flow.MakeID(r)
}

// newRPCSentEntity returns a new rpcSentEntity.
Expand Down

0 comments on commit 96aa46f

Please sign in to comment.