You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove the Default impl on the ExecutionPayloadEnvelope type.
This was introduced in #34 since the watch channel that's used to forward ExecutionPayloadEnvelope objects needs to be initialized with a default value for the object type passed into the channel. This ticket may require re-visiting the type of channel used in the net crate.
The text was updated successfully, but these errors were encountered:
Fix#36 . This PR removed the unnecessary `Default` trait impl for
`ExecutionPayloadEnvelope`.
Replace the watch channel to std mpsc channel which no init value
needed.
Signed-off-by: Chen Kai <[email protected]>
Description
Remove the
Default
impl on theExecutionPayloadEnvelope
type.This was introduced in #34 since the watch channel that's used to forward
ExecutionPayloadEnvelope
objects needs to be initialized with a default value for the object type passed into the channel. This ticket may require re-visiting the type of channel used in thenet
crate.The text was updated successfully, but these errors were encountered: