Skip to content

Commit

Permalink
make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Mar 17, 2024
1 parent b04897f commit 238a06d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starknet-core/src/types/eth_address.rs
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ mod tests {
// Asserting the conversion from hex string to EthAddress is equal to Felt conversion
assert_eq!(
EthAddress::from_hex(address).unwrap(),
EthAddress::from_felt(&FieldElement::from_hex_be(&address).unwrap()).unwrap()
EthAddress::from_felt(&FieldElement::from_hex_be(address).unwrap()).unwrap()
);
}
}
Expand Down

0 comments on commit 238a06d

Please sign in to comment.