pub trait RelayerConfigOverride {
    // Required method
    fn modify_relayer_config(&self, config: &mut Config);
}
Expand description

An internal trait that can be implemented by test cases to override the relayer config before the relayer gets initialized.

This is called by RunBinaryChainTest after the full nodes are running and before the relayer is initialized.

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

Required Methods§

source

fn modify_relayer_config(&self, config: &mut Config)

Modify the relayer config

Implementors§