Skip to content

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
byteZorvin committed Oct 5, 2024
1 parent 13ee0e1 commit 4e68523
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/settlement-clients/starknet/src/tests/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,10 @@ async fn test_settle(#[future] setup: (LocalWalletSignerMiddleware, MadaraCmd))
#[tokio::test]
async fn test_get_nonce_works(#[future] setup: (LocalWalletSignerMiddleware, MadaraCmd)) {
let (account, _madara_process) = setup.await;
log::info!("Test function started");
let nonce = account.get_nonce().await;
match &nonce {
Ok(n) => log::info!("Nonce value from get_nonce: {:?}", n),
Err(e) => log::error!("Error getting nonce: {:?}", e),
}
assert!(nonce.is_ok(), "Failed to get nonce");
log::info!("Test function completed");
}

0 comments on commit 4e68523

Please sign in to comment.