Skip to content

Commit

Permalink
Add a TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
adzialocha committed Nov 16, 2024
1 parent 468806e commit dbb95e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rhio/src/node/actor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,10 @@ impl NodeActor {

let network_message = NetworkMessage::from_bytes(&bytes)?;
match network_message.payload {
NetworkPayload::BlobAnnouncement(_scoped_bucket) => todo!(),
NetworkPayload::BlobAnnouncement(_scoped_bucket) => {
// @TODO: We've received a blob announcement here, check if we're interested in it
// and then start download.
}
NetworkPayload::NatsMessage(message) => {
// Filter out all incoming messages we're not subscribed to. This can happen
// especially when receiving messages over the gossip overlay as they are not
Expand Down

0 comments on commit dbb95e8

Please sign in to comment.