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

Required Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T: PrecompileSet> PrecompileTesterExt for T