Enum ethers_flashbots::FlashbotsMiddlewareError [−][src]
pub enum FlashbotsMiddlewareError<M: Middleware, S: Signer> {
MissingParameters,
RelayError(RelayError<S>),
MiddlewareError(M::Error),
}Expand description
Errors for the Flashbots middleware.
Variants
Some parameters were missing.
For bundle simulation, check that the following are set:
simulation_blocksimulation_timestampblock
For bundle submission, check that the following are set:
block
Additionally, min_timestamp and max_timestamp must
both be set or unset.
The relay responded with an error.
Tuple Fields of RelayError
0: RelayError<S>An error occured in one of the middlewares.
Tuple Fields of MiddlewareError
0: M::ErrorTrait Implementations
impl<M: Debug + Middleware, S: Debug + Signer> Debug for FlashbotsMiddlewareError<M, S> where
M::Error: Debug,
impl<M: Debug + Middleware, S: Debug + Signer> Debug for FlashbotsMiddlewareError<M, S> where
M::Error: Debug,
Performs the conversion.