From 78c99d7f108e60ea6830ad687fe078a23d8618ed Mon Sep 17 00:00:00 2001 From: David Bell <17103917+davidjohnbell@users.noreply.github.com> Date: Tue, 21 Nov 2023 12:32:35 +0400 Subject: [PATCH] chore: break long line --- coordinator/src/tributary/handle.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/coordinator/src/tributary/handle.rs b/coordinator/src/tributary/handle.rs index ed36e2dcd..63b5ac2b4 100644 --- a/coordinator/src/tributary/handle.rs +++ b/coordinator/src/tributary/handle.rs @@ -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,