We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0824e2a commit ffb0baeCopy full SHA for ffb0bae
1 file changed
batcher/aligned-sdk/src/sdk.rs
@@ -34,7 +34,7 @@ use std::{str::FromStr, sync::Arc};
34
use tokio::{net::TcpStream, sync::Mutex};
35
use tokio_tungstenite::{connect_async, tungstenite::Message, MaybeTlsStream, WebSocketStream};
36
37
-use log::{debug, info};
+use log::debug;
38
39
use futures_util::{
40
stream::{SplitSink, SplitStream},
@@ -503,10 +503,9 @@ async fn _is_proof_verified(
503
payment_service_addr,
504
);
505
506
- let result = call.await.map_err(|e| {
507
- info!("err: {}", e.to_string());
508
- errors::VerificationError::EthereumCallError(e.to_string())
509
- })?;
+ let result = call
+ .await
+ .map_err(|e| errors::VerificationError::EthereumCallError(e.to_string()))?;
510
511
Ok(result)
512
}
0 commit comments