@@ -4,7 +4,7 @@ use sealed::*;
4
4
/// A [`Trevm`] that requires a [`Cfg`].
5
5
///
6
6
/// Expected continuations include:
7
- /// - [`Trevm ::fill_cfg`]
7
+ /// - [`EvmNeedsCfg ::fill_cfg`]
8
8
///
9
9
/// [`Cfg`]: crate::Cfg
10
10
pub type EvmNeedsCfg < ' a , Ext , Db > = Trevm < ' a , Ext , Db , NeedsCfg > ;
@@ -38,7 +38,7 @@ pub type EvmNeedsNextBlock<'a, Ext, Db> = Trevm<'a, Ext, Db, NeedsNextBlock>;
38
38
///
39
39
/// Expected continuations include:
40
40
/// - [`EvmNeedsTx::fill_tx`]
41
- /// - [`EvmNeedsTx::execute_tx `]
41
+ /// - [`EvmNeedsTx::run_tx `]
42
42
/// - [`EvmNeedsTx::finish`]
43
43
///
44
44
/// [`Tx`]: crate::Tx
@@ -57,8 +57,8 @@ pub type EvmErrored<'a, Ext, Db, C, E = <C as BlockContext<Ext, Db>>::Error> =
57
57
58
58
/// A [`Trevm`] that is ready to execute a transaction.
59
59
///
60
- /// The transaction may be executed with [`Trevm::execute_tx `] or cleared
61
- /// with [`Trevm ::clear_tx`]
60
+ /// The transaction may be executed with [`EvmReady::run `] or cleared
61
+ /// with [`EvmReady ::clear_tx`]
62
62
pub type EvmReady < ' a , Ext , Db , C > = Trevm < ' a , Ext , Db , Ready < C > > ;
63
63
64
64
#[ allow( dead_code) ]
0 commit comments