@@ -101,7 +101,7 @@ fn create_test_init_data(
101
101
) ;
102
102
103
103
let account_tx = AccountTransaction :: DeployAccount ( deploy_account_tx) ;
104
- account_tx. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
104
+ account_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap ( ) ;
105
105
106
106
// Declare a contract.
107
107
let contract_class = ContractClassV0 :: from_file ( TEST_CONTRACT_CAIRO0_PATH ) . into ( ) ;
@@ -116,7 +116,7 @@ fn create_test_init_data(
116
116
)
117
117
. unwrap ( ) ,
118
118
) ;
119
- account_tx. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
119
+ account_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap ( ) ;
120
120
121
121
// Deploy a contract using syscall deploy.
122
122
let entry_point_selector = selector_from_name ( "deploy_contract" ) ;
@@ -171,7 +171,7 @@ fn test_fee_enforcement(
171
171
172
172
let account_tx = AccountTransaction :: DeployAccount ( deploy_account_tx) ;
173
173
let enforce_fee = account_tx. enforce_fee ( ) ;
174
- let result = account_tx. execute ( & mut state, & block_context, true , true ) ;
174
+ let result = account_tx. execute ( & mut state, & block_context, true , true , false ) ;
175
175
assert_eq ! ( result. is_err( ) , enforce_fee) ;
176
176
}
177
177
}
@@ -306,7 +306,8 @@ fn test_revert_invoke(
306
306
) ;
307
307
308
308
let account_tx = AccountTransaction :: DeployAccount ( deploy_account_tx) ;
309
- let deploy_execution_info = account_tx. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
309
+ let deploy_execution_info =
310
+ account_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap ( ) ;
310
311
311
312
// Invoke a function from the newly deployed contract, that changes the state.
312
313
let storage_key = stark_felt ! ( 9_u8 ) ;
@@ -374,7 +375,7 @@ fn test_fail_deploy_account(block_context: BlockContext) {
374
375
& mut NonceManager :: default ( ) ,
375
376
) ;
376
377
let deploy_address = deploy_account_tx. get_address_of_deploy ( ) . unwrap ( ) ;
377
- deploy_account_tx. execute ( & mut state, & block_context, true , true ) . unwrap_err ( ) ;
378
+ deploy_account_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap_err ( ) ;
378
379
379
380
// Assert nonce and balance are unchanged, and that no contract was deployed at the address.
380
381
assert_eq ! ( state. get_nonce_at( deployed_account_address) . unwrap( ) , Nonce ( stark_felt!( 0_u8 ) ) ) ;
@@ -416,7 +417,7 @@ fn test_fail_declare(max_fee: Fee, #[from(create_test_init_data)] init_data: Tes
416
417
) ;
417
418
418
419
// Fail execution, assert nonce and balance are unchanged.
419
- declare_account_tx. execute ( & mut state, & block_context, true , true ) . unwrap_err ( ) ;
420
+ declare_account_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap_err ( ) ;
420
421
assert_eq ! ( state. get_nonce_at( account_address) . unwrap( ) , next_nonce) ;
421
422
assert_eq ! (
422
423
state. get_fee_token_balance( & block_context, & account_address) . unwrap( ) ,
@@ -670,6 +671,7 @@ fn test_max_fee_to_max_steps_conversion(
670
671
stark_felt!( 1_u8 ) , // Calldata length.
671
672
stark_felt!( 25_u8 ) // Calldata: arg.
672
673
] ;
674
+ let simulate = false ;
673
675
674
676
// First invocation of `with_arg` gets the exact pre-calculated actual fee as max_fee.
675
677
let account_tx1 = account_invoke_tx (
@@ -680,10 +682,11 @@ fn test_max_fee_to_max_steps_conversion(
680
682
) ;
681
683
let execution_context1 = EntryPointExecutionContext :: new_invoke (
682
684
& block_context,
683
- & account_tx1. get_account_transaction_context ( ) ,
685
+ & account_tx1. get_account_transaction_context ( simulate ) ,
684
686
) ;
685
687
let max_steps_limit1 = execution_context1. vm_run_resources . get_n_steps ( ) ;
686
- let tx_execution_info1 = account_tx1. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
688
+ let tx_execution_info1 =
689
+ account_tx1. execute ( & mut state, & block_context, true , true , simulate) . unwrap ( ) ;
687
690
let n_steps1 = tx_execution_info1. actual_resources . 0 . get ( "n_steps" ) . unwrap ( ) ;
688
691
689
692
// Second invocation of `with_arg` gets twice the pre-calculated actual fee as max_fee.
@@ -695,10 +698,11 @@ fn test_max_fee_to_max_steps_conversion(
695
698
) ;
696
699
let execution_context2 = EntryPointExecutionContext :: new_invoke (
697
700
& block_context,
698
- & account_tx2. get_account_transaction_context ( ) ,
701
+ & account_tx2. get_account_transaction_context ( simulate ) ,
699
702
) ;
700
703
let max_steps_limit2 = execution_context2. vm_run_resources . get_n_steps ( ) ;
701
- let tx_execution_info2 = account_tx2. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
704
+ let tx_execution_info2 =
705
+ account_tx2. execute ( & mut state, & block_context, true , true , simulate) . unwrap ( ) ;
702
706
let n_steps2 = tx_execution_info2. actual_resources . 0 . get ( "n_steps" ) . unwrap ( ) ;
703
707
704
708
// Test that steps limit doubles as max_fee doubles, but actual consumed steps and fee remains.
@@ -799,7 +803,7 @@ fn write_and_transfer(
799
803
* block_context. fee_token_address. 0 . key( )
800
804
] ;
801
805
let account_tx = account_invoke_tx ( execute_calldata, account_address, nonce_manager, max_fee) ;
802
- account_tx. execute ( state, block_context, true , true ) . unwrap ( )
806
+ account_tx. execute ( state, block_context, true , true , false ) . unwrap ( )
803
807
}
804
808
805
809
/// Tests that when a transaction drains an account's balance before fee transfer, the execution is
@@ -845,7 +849,7 @@ fn test_revert_on_overdraft(
845
849
let approve_tx: AccountTransaction =
846
850
account_invoke_tx ( approve_calldata, account_address, & mut nonce_manager, max_fee) ;
847
851
let approval_execution_info =
848
- approve_tx. execute ( & mut state, & block_context, true , true ) . unwrap ( ) ;
852
+ approve_tx. execute ( & mut state, & block_context, true , true , false ) . unwrap ( ) ;
849
853
assert ! ( !approval_execution_info. is_reverted( ) ) ;
850
854
851
855
// Transfer a valid amount of funds to compute the cost of a successful
0 commit comments