pub trait PrecompileTesterExt: PrecompileSet + Sized {
    // Required method
    fn prepare_test(
        &self,
        from: impl Into<H160>,
        to: impl Into<H160>,
        data: Vec<u8>
    ) -> PrecompilesTester<'_, Self>;
}

Required Methods§

source

fn prepare_test( &self, from: impl Into<H160>, to: impl Into<H160>, data: Vec<u8> ) -> PrecompilesTester<'_, Self>

Implementors§

source§

impl<T: PrecompileSet> PrecompileTesterExt for T