Rename callTrace into progressTrace

This commit is contained in:
Kerollmops 2025-02-25 10:07:51 +01:00
parent ea7bae9a71
commit dfce20be21
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
12 changed files with 63 additions and 63 deletions

View file

@ -61,7 +61,7 @@ pub struct BatchStats {
pub types: BTreeMap<Kind, u32>,
pub index_uids: BTreeMap<String, u32>,
#[serde(default, skip_serializing_if = "serde_json::Map::is_empty")]
pub call_trace: serde_json::Map<String, serde_json::Value>,
pub progress_trace: serde_json::Map<String, serde_json::Value>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub write_channel_congestion: Option<serde_json::Map<String, serde_json::Value>>,
}