From eb2b5c9f2eff96c85193d568412b885da35f2aff Mon Sep 17 00:00:00 2001 From: Marzi Date: Wed, 20 Mar 2024 13:05:59 -0400 Subject: [PATCH] Format fix post merge --- stacks-signer/src/client/stacks_client.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/stacks-signer/src/client/stacks_client.rs b/stacks-signer/src/client/stacks_client.rs index 86ab28218..8fdfa0c36 100644 --- a/stacks-signer/src/client/stacks_client.rs +++ b/stacks-signer/src/client/stacks_client.rs @@ -227,7 +227,10 @@ impl StacksClient { } /// Submit the block proposal to the stacks node. The block will be validated and returned via the HTTP endpoint for Block events. - pub fn submit_block_for_validation_with_retry(&self, block: NakamotoBlock) -> Result<(), ClientError> { + pub fn submit_block_for_validation_with_retry( + &self, + block: NakamotoBlock, + ) -> Result<(), ClientError> { let block_proposal = NakamotoBlockProposal { block, chain_id: self.chain_id, @@ -461,7 +464,10 @@ impl StacksClient { } /// Helper function to submit a transaction to the Stacks mempool - pub fn submit_transaction_with_retry(&self, tx: &StacksTransaction) -> Result { + pub fn submit_transaction_with_retry( + &self, + tx: &StacksTransaction, + ) -> Result { let txid = tx.txid(); let tx = tx.serialize_to_vec(); let send_request = || {