pub trait ChannelOrderOverride {
// Required method
fn channel_order(&self) -> Ordering;
}
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§
sourcefn channel_order(&self) -> Ordering
fn channel_order(&self) -> Ordering
Return the channel ordering as Ordering
.