Skip to content

Commit

Permalink
Remove info log on is_proof_verified error
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbosio committed Oct 8, 2024
1 parent 0824e2a commit ffb0bae
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions batcher/aligned-sdk/src/sdk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use std::{str::FromStr, sync::Arc};
use tokio::{net::TcpStream, sync::Mutex};
use tokio_tungstenite::{connect_async, tungstenite::Message, MaybeTlsStream, WebSocketStream};

use log::{debug, info};
use log::debug;

use futures_util::{
stream::{SplitSink, SplitStream},
Expand Down Expand Up @@ -503,10 +503,9 @@ async fn _is_proof_verified(
payment_service_addr,
);

let result = call.await.map_err(|e| {
info!("err: {}", e.to_string());
errors::VerificationError::EthereumCallError(e.to_string())
})?;
let result = call
.await
.map_err(|e| errors::VerificationError::EthereumCallError(e.to_string()))?;

Ok(result)
}
Expand Down

0 comments on commit ffb0bae

Please sign in to comment.