diff --git a/src/transaction/mod.rs b/src/transaction/mod.rs index c5721de4f..2cf70f406 100644 --- a/src/transaction/mod.rs +++ b/src/transaction/mod.rs @@ -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. diff --git a/tests/integration_tests/complex_contracts/kakarot/mod.rs b/tests/integration_tests/complex_contracts/kakarot/mod.rs index 2b372ceb1..e523d70ae 100644 --- a/tests/integration_tests/complex_contracts/kakarot/mod.rs +++ b/tests/integration_tests/complex_contracts/kakarot/mod.rs @@ -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 = @@ -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, ]);