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

Commit a4f8252

Browse files
committed
add ignore
1 parent bcca60c commit a4f8252

File tree

2 files changed

+3
-1
lines changed
  • src/transaction
  • tests/integration_tests/complex_contracts/kakarot

2 files changed

+3
-1
lines changed

src/transaction/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ impl Transaction {
238238
}
239239
}
240240

241-
/// It creates a new transaction structure modification the skip flags. It is meant to be used only to run a simulation
241+
/// It creates a new transaction structure modifying the skip flags. It is meant to be used only to run a simulation
242242
///## Parameters:
243243
///- skip_validate: the transaction will not be verified.
244244
///- skip_execute: the transaction will not be executed in the cairo vm.

tests/integration_tests/complex_contracts/kakarot/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ use starknet_in_rust::utils::{calculate_sn_keccak, felt_to_field_element, field_
1818
use crate::integration_tests::cairo_native::TestStateSetup;
1919

2020
#[test]
21+
#[ignore = "linked to native issue #499 and #500"]
2122
fn test_kakarot_contract() {
2223
// Evm constants
2324
let private_key: B256 =
@@ -54,6 +55,7 @@ fn test_kakarot_contract() {
5455
&Felt252::from_bytes_be(&uninitialized_account_class_hash.0),
5556
);
5657
let contract_account_address = Address(contract_account_address);
58+
// PUSH1 01 PUSH1 00 SSTORE PUSH1 02 PUSH1 00 MSTORE8 PUSH1 01 PUSH1 00 RETURN
5759
let bytecode = Felt252::from_bytes_be_slice(&[
5860
0x60, 0x01, 0x60, 0x00, 0x55, 0x60, 0x02, 0x60, 0x00, 0x53, 0x60, 0x01, 0x60, 0x00, 0xf3,
5961
]);

0 commit comments

Comments
 (0)