Skip to content

Commit 2da6ae9

Browse files
committed
chore: add to macro arms
1 parent 9ec0ac7 commit 2da6ae9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/states.rs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ pub(crate) mod sealed {
148148
/// - [`EvmErrored`]
149149
/// - [`EvmBlockDriverErrored`]
150150
/// - [`EvmChainDriverErrored`]
151+
/// - [`EvmBundleDriverErrored`]
151152
///
152153
/// ## Basic usage:
153154
///
@@ -266,6 +267,12 @@ macro_rules! trevm_aliases {
266267
///
267268
/// This is an [`EvmErrored`] parameterized with the driver's error type.
268269
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>;
269276
}
270277
};
271278

@@ -338,6 +345,12 @@ macro_rules! trevm_aliases {
338345
/// This is an [`EvmErrored`] parameterized with the driver's error type.
339346
pub type EvmChainDriverErrored<'a, T> =
340347
$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>;
341354
}
342355
};
343356
}

0 commit comments

Comments
 (0)