@@ -148,6 +148,7 @@ pub(crate) mod sealed {
148
148
/// - [`EvmErrored`]
149
149
/// - [`EvmBlockDriverErrored`]
150
150
/// - [`EvmChainDriverErrored`]
151
+ /// - [`EvmBundleDriverErrored`]
151
152
///
152
153
/// ## Basic usage:
153
154
///
@@ -266,6 +267,12 @@ macro_rules! trevm_aliases {
266
267
///
267
268
/// This is an [`EvmErrored`] parameterized with the driver's error type.
268
269
pub type EvmChainDriverErrored <' a, T > = $crate:: EvmChainDriverErrored <' a, $ext, $db, T >;
270
+
271
+ /// A [`Trevm`] that encountered an error during [`BundleDriver`] execution.
272
+ ///
273
+ /// This is an [`EvmErrored`] parameterized with the driver's error type.
274
+ pub type EvmBundleDriverErrored <' a, T > =
275
+ $crate:: EvmBundleDriverErrored <' a, $ext, $db, T >;
269
276
}
270
277
} ;
271
278
@@ -338,6 +345,12 @@ macro_rules! trevm_aliases {
338
345
/// This is an [`EvmErrored`] parameterized with the driver's error type.
339
346
pub type EvmChainDriverErrored <' a, T > =
340
347
$crate:: EvmChainDriverErrored <' static , $ext, $db, T >;
348
+
349
+ /// A [`Trevm`] that encountered an error during [`BundleDriver`] execution.
350
+ ///
351
+ /// This is an [`EvmErrored`] parameterized with the driver's error type.
352
+ pub type EvmBundleDriverErrored <' a, T > =
353
+ $crate:: EvmBundleDriverErrored <' static , $ext, $db, T >;
341
354
}
342
355
} ;
343
356
}
0 commit comments