Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Commit

Permalink
add ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
greged93 committed Apr 11, 2024
1 parent 9487300 commit d199153
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ impl Transaction {
}
}

/// It creates a new transaction structure modification the skip flags. It is meant to be used only to run a simulation
/// It creates a new transaction structure modifying the skip flags. It is meant to be used only to run a simulation
///## Parameters:
///- skip_validate: the transaction will not be verified.
///- skip_execute: the transaction will not be executed in the cairo vm.
Expand Down
2 changes: 2 additions & 0 deletions tests/integration_tests/complex_contracts/kakarot/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use starknet_in_rust::utils::{calculate_sn_keccak, felt_to_field_element, field_
use crate::integration_tests::cairo_native::TestStateSetup;

#[test]
#[ignore = "linked to native issue #499 and #500"]
fn test_kakarot_contract() {
// Evm constants
let private_key: B256 =
Expand Down Expand Up @@ -54,6 +55,7 @@ fn test_kakarot_contract() {
&Felt252::from_bytes_be(&uninitialized_account_class_hash.0),
);
let contract_account_address = Address(contract_account_address);
// PUSH1 01 PUSH1 00 SSTORE PUSH1 02 PUSH1 00 MSTORE8 PUSH1 01 PUSH1 00 RETURN
let bytecode = Felt252::from_bytes_be_slice(&[
0x60, 0x01, 0x60, 0x00, 0x55, 0x60, 0x02, 0x60, 0x00, 0x53, 0x60, 0x01, 0x60, 0x00, 0xf3,
]);
Expand Down

0 comments on commit d199153

Please sign in to comment.