Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2024-06-12 04:43:53 +00:00 committed by GitHub
parent 1538f8e90f
commit 03d4eff379
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -779,7 +779,11 @@ async fn login_with_password(
maybe_rpc: Option<String>,
password: &str,
) -> (Identity, Vec<u8>, Keyfile) {
use {alloy_primitives::Address as EthAddress, sha2::{Digest, Sha256}, ring::signature::KeyPair};
use {
alloy_primitives::Address as EthAddress,
ring::signature::KeyPair,
sha2::{Digest, Sha256},
};
let disk_keyfile: Vec<u8> = tokio::fs::read(format!("{}/.keys", home_directory_path))
.await