@@ -123,10 +123,6 @@ pub(super) struct ProofCalculated {
123
123
sequence_number : u64 ,
124
124
/// Sparse trie update
125
125
update : SparseTrieUpdate ,
126
- /// Total number of account targets
127
- account_targets : usize ,
128
- /// Total number of storage slot targets
129
- storage_targets : usize ,
130
126
/// The time taken to calculate the proof.
131
127
elapsed : Duration ,
132
128
}
@@ -409,10 +405,6 @@ pub(crate) struct MultiProofTaskMetrics {
409
405
410
406
/// Histogram of proof calculation durations.
411
407
pub proof_calculation_duration_histogram : Histogram ,
412
- /// Histogram of proof calculation account targets.
413
- pub proof_calculation_account_targets_histogram : Histogram ,
414
- /// Histogram of proof calculation storage targets.
415
- pub proof_calculation_storage_targets_histogram : Histogram ,
416
408
417
409
/// Histogram of sparse trie update durations.
418
410
pub sparse_trie_update_duration_histogram : Histogram ,
@@ -822,12 +814,6 @@ where
822
814
self . metrics
823
815
. proof_calculation_duration_histogram
824
816
. record ( proof_calculated. elapsed ) ;
825
- self . metrics
826
- . proof_calculation_account_targets_histogram
827
- . record ( proof_calculated. account_targets as f64 ) ;
828
- self . metrics
829
- . proof_calculation_storage_targets_histogram
830
- . record ( proof_calculated. storage_targets as f64 ) ;
831
817
832
818
debug ! (
833
819
target: "engine::root" ,
0 commit comments