From cb2cd1f64fdf435cad5bbe74b10afaa4de168ce9 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 6 Sep 2024 14:54:38 +1000 Subject: [PATCH] Run the formatter Recent merge of multiple PRs has left us with a minor formatting issue, fix it by running the formatter. --- client/src/client_sync/v17/blockchain.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/client_sync/v17/blockchain.rs b/client/src/client_sync/v17/blockchain.rs index f45e341..79eb86b 100644 --- a/client/src/client_sync/v17/blockchain.rs +++ b/client/src/client_sync/v17/blockchain.rs @@ -45,10 +45,7 @@ macro_rules! impl_client_v17__getblock { self.call("getblock", &[into_json(hash)?, 0.into()]) } - pub fn get_block_verbosity_one( - &self, - hash: BlockHash, - ) -> Result { + pub fn get_block_verbosity_one(&self, hash: BlockHash) -> Result { self.call("getblock", &[into_json(hash)?, 1.into()]) } }