Skip to content

Commit

Permalink
chore: break long line
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjohnbell committed Nov 21, 2023
1 parent da6ccf8 commit 78c99d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions coordinator/src/tributary/handle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -467,8 +467,10 @@ pub(crate) async fn handle_application_tx<
let preprocesses = ConfirmationNonces::get(txn, genesis, attempt).unwrap();
// TODO: This can technically happen under very very very specific timing as the txn put
// happens before DkgConfirmed, yet the txn commit isn't guaranteed to
let key_pair = CurrentlyCompletingKeyPair::get(txn, genesis)
.expect("in DkgConfirmed handling, which happens after everyone (including us) fires DkgConfirmed, yet no confirming key pair");
let key_pair = CurrentlyCompletingKeyPair::get(txn, genesis).expect(
"in DkgConfirmed handling, which happens after everyone \
(including us) fires DkgConfirmed, yet no confirming key pair",
);
let sig =
match DkgConfirmer::complete(spec, key, attempt, preprocesses, &key_pair, shares) {
Ok(sig) => sig,
Expand Down

0 comments on commit 78c99d7

Please sign in to comment.