We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad915f3 commit e2c529cCopy full SHA for e2c529c
2 files changed
batcher/aligned-task-sender/src/commands.rs
@@ -283,10 +283,7 @@ pub async fn send_infinite_proofs(args: SendInfiniteProofsArgs) {
283
let private_key_str = match line {
284
Ok(line) => line,
285
Err(err) => {
286
- error!(
287
- "Could not read line from private keys file: {}",
288
- err
289
- );
+ error!("Could not read line from private keys file: {}", err);
290
return;
291
}
292
};
batcher/aligned/src/main.rs
@@ -474,10 +474,7 @@ async fn main() -> Result<(), AlignedError> {
474
match LocalWallet::from_str(ANVIL_PRIVATE_KEY) {
475
Ok(wallet) => wallet,
476
Err(e) => {
477
- warn!(
478
- "Failed to create wallet from anvil private key: {}",
479
- e
480
+ warn!("Failed to create wallet from anvil private key: {}", e);
481
return Ok(());
482
483
0 commit comments