Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
LePremierHomme committed Nov 28, 2024
1 parent f57bac9 commit e933bfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipc/provider/src/manager/evm/manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,7 @@ impl SubnetManager for EthSubnetManager {
active
.iter()
.map(ethers_address_to_fil_address)
.collect::<Result<Vec<_>, _>>()?
.collect::<Result<Vec<_>, _>>()?,
);
for addr in active {
let info = contract.get_validator(addr).call().await?;
Expand All @@ -907,7 +907,7 @@ impl SubnetManager for EthSubnetManager {
waiting
.iter()
.map(ethers_address_to_fil_address)
.collect::<Result<Vec<_>, _>>()?
.collect::<Result<Vec<_>, _>>()?,
);
for addr in waiting {
let info = contract.get_validator(addr).call().await?;
Expand Down

0 comments on commit e933bfb

Please sign in to comment.