diff --git a/crates/consensus/beacon/src/engine/mod.rs b/crates/consensus/beacon/src/engine/mod.rs index 50bdfa502d..5e3236965d 100644 --- a/crates/consensus/beacon/src/engine/mod.rs +++ b/crates/consensus/beacon/src/engine/mod.rs @@ -337,7 +337,9 @@ where // updated successfully. The build process is specified in the Payload // building section. let attributes = PayloadBuilderAttributes::new(header.parent_hash, attrs); - // TODO(mattsse) this needs to be handled asynchronously + + // send the payload to the builder and return the receiver for the pending payload id, + // initiating payload job is handled asynchronously let pending_payload_id = self.payload_builder.send_new_payload(attributes); // Client software MUST respond to this method call in the following way: diff --git a/crates/net/network/src/transactions.rs b/crates/net/network/src/transactions.rs index 4431a8ad5e..7ae0a10f39 100644 --- a/crates/net/network/src/transactions.rs +++ b/crates/net/network/src/transactions.rs @@ -386,7 +386,6 @@ where self.network.send_transactions_hashes(peer_id, msg); } } - // TODO Add remaining events _ => {} } }