summaryrefslogtreecommitdiffstats
path: root/src/types/keys.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/keys.rs')
-rw-r--r--src/types/keys.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/types/keys.rs b/src/types/keys.rs
index 0b52d18..c39816c 100644
--- a/src/types/keys.rs
+++ b/src/types/keys.rs
@@ -20,7 +20,7 @@ impl PartialEq for Key {
#[derive(Debug, Clone, Copy)]
pub struct KeyPair {
pub birth: Instant, // when was the key-pair created
- pub confirmed: bool, // has the key-pair been confirmed?
+ pub initiator: bool, // has the key-pair been confirmed?
pub send: Key, // key for outbound messages
pub recv: Key, // key for inbound messages
-} \ No newline at end of file
+}