Skip to content

Commit

Permalink
fix wrong function use
Browse files Browse the repository at this point in the history
  • Loading branch information
sevenzing committed Apr 11, 2024
1 parent 6c1431f commit 5b6146b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blockscout-ens/bens-server/src/conversion/domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn batch_resolve_from_logic(
let names = output
.into_iter()
.map(|(address, name)| {
let address = checksummed(&address_from_str_inner(&address)?, chain_id);
let address = address_from_str_logic(&address, chain_id)?.hash;
Ok((address, name))
})
.collect::<Result<_, _>>()?;
Expand Down

0 comments on commit 5b6146b

Please sign in to comment.