Skip to content

Commit

Permalink
Release 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nkostoulas committed May 9, 2019
1 parent 6947189 commit f693fe1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

# 0.2.0

* Finished core interfaces and testing

# 0.1.0

* Playing with Rust
2 changes: 1 addition & 1 deletion src/coordinator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn run_request<T: Service, K: ClientChain, D: Storage>(
storage.save_challenge_state(&challenge)?;

// create a challenge state mutex to share between challenger and listener
let mut shared_challenge = Arc::new(Mutex::new(challenge));
let shared_challenge = Arc::new(Mutex::new(challenge));
// and a channel for sending responses from listener to challenger
let (verify_tx, verify_rx): (Sender<ChallengeResponse>, Receiver<ChallengeResponse>) = channel();

Expand Down

0 comments on commit f693fe1

Please sign in to comment.