pub trait ChannelOrderOverride {
    fn channel_order(&self) -> Order;
}
Expand description

An internal trait for test cases to override the channel ordering when creating channels.

This is called by RunBinaryChannelTest before creating the IBC channels.

Test writers should implement TestOverrides for their test cases instead of implementing this trait directly.

Required Methods

Return the channel ordering as Order.

Implementors