File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ use std::fmt::Display;
20
20
/// the actual type to be an [`U256`] instead of a [`B256`].
21
21
pub type StorageKey = U256 ;
22
22
23
- /// An error that can occur when using [AlloyDB ].
23
+ /// An error that can occur when using [`AlloyDb` ].
24
24
#[ derive( Debug ) ]
25
25
pub struct DBTransportError ( pub TransportError ) ;
26
26
@@ -40,7 +40,7 @@ impl From<TransportError> for DBTransportError {
40
40
}
41
41
}
42
42
43
- /// An alloy-powered REVM [Database][revm::database_interface::Database].
43
+ /// An alloy-powered REVM [` Database` ][revm::database_interface::Database].
44
44
///
45
45
/// When accessing the database, it'll use the given provider to fetch the corresponding account's data.
46
46
#[ derive( Debug ) ]
@@ -53,7 +53,7 @@ pub struct AlloyDb<N: Network, P: Provider<N>> {
53
53
}
54
54
55
55
impl < N : Network , P : Provider < N > > AlloyDb < N , P > {
56
- /// Creates a new AlloyDB instance, with a [Provider] and a block.
56
+ /// Creates a new AlloyDB instance, with a [` Provider` ] and a block.
57
57
pub fn new ( provider : P , block_number : BlockId ) -> Self {
58
58
Self { provider, block_number, _marker : core:: marker:: PhantomData }
59
59
}
You can’t perform that action at this time.
0 commit comments