Skip to content

Commit

Permalink
chore(starknet_integration_tests): running end to end integration tes…
Browse files Browse the repository at this point in the history
…t as binary with failure

commit-id:c951d363
  • Loading branch information
lev-starkware committed Dec 10, 2024
1 parent e3ef8da commit 73a0062
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ use tracing::info;

#[tokio::main]
async fn main() {
let a = 5;
configure_tracing().await;
info!("Running integration test setup.");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ pub async fn end_to_end_integration(mut tx_generator: MultiAccountTransactionGen
);

info!("Verifying tx sender account nonce.");
let expected_nonce_value = tx_hashes.len() + 1;
let expected_nonce_value = tx_hashes.len() + 2; //1;
let expected_nonce =
Nonce(Felt::from_hex_unchecked(format!("0x{:X}", expected_nonce_value).as_str()));
let nonce = get_account_nonce(&batcher_storage_reader, sender_address);
Expand Down

0 comments on commit 73a0062

Please sign in to comment.