Skip to content

Commit

Permalink
remove final assert in CliqueMiddleware
Browse files Browse the repository at this point in the history
  • Loading branch information
Rjected committed Jan 30, 2023
1 parent 34be97f commit 15b2810
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion crates/staged-sync/src/test_utils/clique_middleware.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ pub trait CliqueMiddleware: Send + Sync + Middleware {
if unlocked_addr != our_address {
return Err(CliqueError::AddressMismatch { local: our_address, remote: unlocked_addr })
}
assert_eq!(unlocked_addr, our_address);

let unlock_success = self.unlock_account(our_address, password.to_string(), None).await?;

Expand Down

0 comments on commit 15b2810

Please sign in to comment.