Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions crates/core/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,6 @@ pub fn create_test_meter_bundle_response() -> MeterBundleResponse {
state_flashblock_index: None,
total_gas_used: 0,
total_execution_time_us: 0,
state_root_time_us: 0,
}
}
2 changes: 2 additions & 0 deletions crates/core/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,8 @@ pub struct MeterBundleResponse {
pub state_flashblock_index: Option<u64>,
pub total_gas_used: u64,
pub total_execution_time_us: u128,
#[serde(default)]
pub state_root_time_us: u128,
}

#[cfg(test)]
Expand Down