Skip to content

Commit

Permalink
key sync -> key share
Browse files Browse the repository at this point in the history
  • Loading branch information
miraclx committed Nov 19, 2024
1 parent 55665fd commit 16b9ba3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/node/src/sync/key.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Node {
}
};

self.bidirectional_key_sync(context, our_identity, their_identity, stream)
self.bidirectional_key_share(context, our_identity, their_identity, stream)
.await
}

Expand Down Expand Up @@ -78,11 +78,11 @@ impl Node {
)
.await?;

self.bidirectional_key_sync(context, our_identity, their_identity, stream)
self.bidirectional_key_share(context, our_identity, their_identity, stream)
.await
}

async fn bidirectional_key_sync(
async fn bidirectional_key_share(
&self,
context: &Context,
our_identity: PublicKey,
Expand Down

0 comments on commit 16b9ba3

Please sign in to comment.