Skip to content

Commit

Permalink
Merge branch 'snap-storage-range' into snap-bytecodes
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta authored Oct 31, 2024
2 parents a6d2f08 + 384eff7 commit fa4be1b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/networking/p2p/rlpx/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ impl Display for Message {
Message::Ping(_) => "p2p:Ping".fmt(f),
Message::Pong(_) => "p2p:Pong".fmt(f),
Message::Status(_) => "eth:Status".fmt(f),
Message::GetAccountRange(_) => "snap::GetAccountRange".fmt(f),
Message::AccountRange(_) => "snap::AccountRange".fmt(f),
Message::GetStorageRanges(_) => "snap::GetStorageRanges".fmt(f),
Message::StorageRanges(_) => "snap::StorageRanges".fmt(f),
Message::GetByteCodes(_) => "snap::GetByteCodes".fmt(f),
Message::ByteCodes(_) => "snap::ByteCodes".fmt(f),
Message::GetAccountRange(_) => "snap:GetAccountRange".fmt(f),
Message::AccountRange(_) => "snap:AccountRange".fmt(f),
Message::GetStorageRanges(_) => "snap:GetStorageRanges".fmt(f),
Message::StorageRanges(_) => "snap:StorageRanges".fmt(f),
Message::GetByteCodes(_) => "snap:GetByteCodes".fmt(f),
Message::ByteCodes(_) => "snap:ByteCodes".fmt(f),
}
}
}

0 comments on commit fa4be1b

Please sign in to comment.