Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/relayer-types/src/core/ics04_channel/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ define_error! {
InvalidVersionLengthConnection
| _ | { "single version must be negotiated on connection before opening channel" },

ChannelFeatureNotSuportedByConnection
ChannelFeatureNotSupportedByConnection
| _ | { "the channel ordering is not supported by connection" },

ChannelNotFound
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer/src/supervisor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ fn process_batch<Chain: ChainHandle>(
/// The labels `chain_id` represents the chain sending the event, and `counterparty_chain_id` represents
/// the chain receiving the event.
/// So successfully sending a packet from chain A to chain B will result in first a SendPacket
/// event with `chain_id = A` and `counterparty_chain_id = B` and then a WriteAcknowlegment
/// event with `chain_id = A` and `counterparty_chain_id = B` and then a WriteAcknowledgment
/// event with `chain_id = B` and `counterparty_chain_id = A`.
fn send_telemetry<Src, Dst>(
src: &Src,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
//! ```
//!
//! The test is run by calling the `run_binary_channel_test` function, passing it
//! a struct, `OrderdChannelTest`, upon which we implement the `TestOverrides`
//! a struct, `OrderedChannelTest`, upon which we implement the `TestOverrides`
//! trait in order to configure the behavior of the test. We define the
//! `should_spawn_supervisor` function to have it return false in order to not
//! automatically spawn a supervisor when the relayer is initialized; this is
Expand Down