Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: query stats: make members public #453

Merged
merged 2 commits into from
Jan 11, 2024
Merged
Changes from 1 commit
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
8 changes: 4 additions & 4 deletions src/ic-cdk/src/api/management_canister/main/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ pub struct DefiniteCanisterSettings {
CandidType, Clone, Debug, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize,
)]
pub struct QueryStats {
num_calls_total: candid::Nat,
num_instructions_total: candid::Nat,
request_payload_bytes_total: candid::Nat,
response_payload_bytes_total: candid::Nat,
pub num_calls_total: candid::Nat,
pub num_instructions_total: candid::Nat,
pub request_payload_bytes_total: candid::Nat,
pub response_payload_bytes_total: candid::Nat,
}

/// Argument type of [canister_status](super::canister_status).
Expand Down
Loading