Skip to content

Commit 4d15fd1

Browse files
authored
bump: Rust to v1.73.0 (#4451)
1 parent fe2fe05 commit 4d15fd1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/rethnet_evm/src/state/irregular.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ where
2424
{
2525
fn default() -> Self {
2626
Self {
27-
phantom: PhantomData::default(),
27+
phantom: PhantomData,
2828
inner: HashMap::default(),
2929
}
3030
}

crates/rethnet_rpc_server/src/filter.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ impl _FilterCriteria {
5454
None => Vec::new(),
5555
};
5656

57-
let _topics = request_options.topics.unwrap_or(Vec::new());
57+
let _topics = request_options.topics.unwrap_or_default();
5858

5959
Ok(Self {
6060
_from_block,

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.70
1+
1.73

0 commit comments

Comments
 (0)