| 57 | } |
| 58 | |
| 59 | pub struct EthereumInitConfig { |
| 60 | pub rpc_url: Url, |
| 61 | pub bridge_address: EvmAddress, |
| 62 | pub bridge_creation_block: u64, |
| 63 | pub to_block: Option<BlockNumberOrTag>, |
| 64 | } |
| 65 | |
| 66 | impl EthereumAdaptor { |
| 67 | async fn get_sol_events<T>(&self) -> Result<Vec<Log<T>>, String> |
nothing calls this directly
no outgoing calls
no test coverage detected