Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashtare committed Oct 1, 2023
1 parent 1c76d15 commit 7dcf03b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evm/src/generation/mpt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub enum AccessListInner {
impl Encodable for AccessListInner {
fn rlp_append(&self, s: &mut RlpStream) {
match self {
AccessListInner::List(list) => s.append_list(&list),
AccessListInner::List(list) => s.append_list(list),
AccessListInner::Item(item) => s.append(item),
};
}
Expand Down

0 comments on commit 7dcf03b

Please sign in to comment.