pub trait ClientOptionsOverride {
    // Provided methods
    fn client_options_a_to_b(&self) -> ClientOptions { ... }
    fn client_options_b_to_a(&self) -> ClientOptions { ... }
}
Expand description

An internal trait that can be implemented by test cases to override the settings for the foreign clients bootstrapped for the test.

The default implementation returns the settings for a client connecting two Cosmos chains with no customizations. Test writers should implement TestOverrides for their test cases instead of implementing this trait directly.

Provided Methods§

Implementors§