Skip to content

Commit e2c529c

Browse files
committed
Fmt
1 parent ad915f3 commit e2c529c

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

batcher/aligned-task-sender/src/commands.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -283,10 +283,7 @@ pub async fn send_infinite_proofs(args: SendInfiniteProofsArgs) {
283283
let private_key_str = match line {
284284
Ok(line) => line,
285285
Err(err) => {
286-
error!(
287-
"Could not read line from private keys file: {}",
288-
err
289-
);
286+
error!("Could not read line from private keys file: {}", err);
290287
return;
291288
}
292289
};

batcher/aligned/src/main.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,10 +474,7 @@ async fn main() -> Result<(), AlignedError> {
474474
match LocalWallet::from_str(ANVIL_PRIVATE_KEY) {
475475
Ok(wallet) => wallet,
476476
Err(e) => {
477-
warn!(
478-
"Failed to create wallet from anvil private key: {}",
479-
e
480-
);
477+
warn!("Failed to create wallet from anvil private key: {}", e);
481478
return Ok(());
482479
}
483480
}

0 commit comments

Comments
 (0)