Skip to content

Commit

Permalink
Run rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cronokirby authored and redshiftzero committed Oct 5, 2023
1 parent cd3910f commit 83b6137
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion crates/bin/pcli/src/command/ceremony.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ impl CeremonyCmd {
})
.await?;
let mut client =
CeremonyCoordinatorServiceClient::connect(coordinator_url.to_string()).await?.max_decoding_message_size(MAX_MESSAGE_SIZE).max_encoding_message_size(MAX_MESSAGE_SIZE);
CeremonyCoordinatorServiceClient::connect(coordinator_url.to_string())
.await?
.max_decoding_message_size(MAX_MESSAGE_SIZE)
.max_encoding_message_size(MAX_MESSAGE_SIZE);
let mut response_rx = client
.participate(ReceiverStream::new(req_rx))
.await?
Expand Down
2 changes: 1 addition & 1 deletion crates/crypto/proof-setup/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pub mod single;
pub mod all;
pub mod single;
2 changes: 1 addition & 1 deletion tools/summonerd/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ impl CoordinatorService {
pub fn new(storage: Storage, participant_tx: mpsc::Sender<Participant>) -> Self {
Self {
storage,
participant_tx
participant_tx,
}
}
}
Expand Down

0 comments on commit 83b6137

Please sign in to comment.