Skip to content

Commit

Permalink
fix: remove unneeded pub scope
Browse files Browse the repository at this point in the history
  • Loading branch information
ilbertt committed Nov 2, 2023
1 parent 445bbdb commit a73dc3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ic-websocket-cdk/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ const INITIAL_CANISTER_SEQUENCE_NUM: u64 = 0;
pub type ClientPrincipal = Principal;
#[derive(CandidType, Clone, Deserialize, Serialize, Eq, PartialEq, Debug, Hash)]
pub(crate) struct ClientKey {
pub(crate) client_principal: ClientPrincipal,
pub(crate) client_nonce: u64,
pub client_principal: ClientPrincipal,
pub client_nonce: u64,
}

impl ClientKey {
Expand Down

0 comments on commit a73dc3d

Please sign in to comment.