@@ -173,7 +173,6 @@ impl<T> CheatStatus<T> {
173
173
/// Tree structure representing trace of a call.
174
174
#[ derive( Debug ) ]
175
175
pub struct CallTrace {
176
- pub run_with_call_header : bool ,
177
176
// only these are serialized
178
177
pub entry_point : CallEntryPoint ,
179
178
pub nested_calls : Vec < CallTraceNode > ,
@@ -207,7 +206,6 @@ impl CairoSerialize for CallTrace {
207
206
impl CallTrace {
208
207
fn default_successful_call ( ) -> Self {
209
208
Self {
210
- run_with_call_header : false ,
211
209
entry_point : CallEntryPoint :: default ( ) ,
212
210
used_execution_resources : ExecutionResources :: default ( ) ,
213
211
used_l1_resources : L1Resources :: default ( ) ,
@@ -354,8 +352,6 @@ impl Default for CheatnetState {
354
352
ClassHash ( TryFromHexStr :: try_from_hex_str ( TEST_CONTRACT_CLASS_HASH ) . unwrap ( ) ) ;
355
353
let test_call = Rc :: new ( RefCell :: new ( CallTrace {
356
354
entry_point : test_code_entry_point. into ( ) ,
357
- // TODO this field could be removed entirely
358
- run_with_call_header : false ,
359
355
..CallTrace :: default_successful_call ( )
360
356
} ) ) ;
361
357
Self {
@@ -495,7 +491,6 @@ impl TraceData {
495
491
pub fn enter_nested_call ( & mut self , entry_point : CallEntryPoint , cheated_data : CheatedData ) {
496
492
let new_call = Rc :: new ( RefCell :: new ( CallTrace {
497
493
entry_point,
498
- run_with_call_header : false ,
499
494
..CallTrace :: default_successful_call ( )
500
495
} ) ) ;
501
496
let current_call = self . current_call_stack . top ( ) ;
0 commit comments