pub enum FlashbotsMiddlewareError<M: Middleware, S: Signer> {
MissingParameters,
RelayError(RelayError<S>),
MiddlewareError(M::Error),
}Expand description
Errors for the Flashbots middleware.
Variants§
MissingParameters
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.
RelayError(RelayError<S>)
The relay responded with an error.
MiddlewareError(M::Error)
An error occured in one of the middlewares.
Trait Implementations§
source§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,
source§impl<M: Middleware, S: Signer> Display for FlashbotsMiddlewareError<M, S>where
RelayError<S>: Display,
impl<M: Middleware, S: Signer> Display for FlashbotsMiddlewareError<M, S>where
RelayError<S>: Display,
source§impl<M: Middleware, S: Signer> Error for FlashbotsMiddlewareError<M, S>where
RelayError<S>: Error,
Self: Debug + Display,
impl<M: Middleware, S: Signer> Error for FlashbotsMiddlewareError<M, S>where
RelayError<S>: Error,
Self: Debug + Display,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl<M: Middleware, S: Signer> From<RelayError<S>> for FlashbotsMiddlewareError<M, S>
impl<M: Middleware, S: Signer> From<RelayError<S>> for FlashbotsMiddlewareError<M, S>
source§fn from(source: RelayError<S>) -> Self
fn from(source: RelayError<S>) -> Self
Converts to this type from the input type.