Skip to content

Commit ffb0bae

Browse files
committed
Remove info log on is_proof_verified error
1 parent 0824e2a commit ffb0bae

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

batcher/aligned-sdk/src/sdk.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use std::{str::FromStr, sync::Arc};
3434
use tokio::{net::TcpStream, sync::Mutex};
3535
use tokio_tungstenite::{connect_async, tungstenite::Message, MaybeTlsStream, WebSocketStream};
3636

37-
use log::{debug, info};
37+
use log::debug;
3838

3939
use futures_util::{
4040
stream::{SplitSink, SplitStream},
@@ -503,10 +503,9 @@ async fn _is_proof_verified(
503503
payment_service_addr,
504504
);
505505

506-
let result = call.await.map_err(|e| {
507-
info!("err: {}", e.to_string());
508-
errors::VerificationError::EthereumCallError(e.to_string())
509-
})?;
506+
let result = call
507+
.await
508+
.map_err(|e| errors::VerificationError::EthereumCallError(e.to_string()))?;
510509

511510
Ok(result)
512511
}

0 commit comments

Comments
 (0)