From 60336714f7a5eb66a62e203c395fe88c15a79306 Mon Sep 17 00:00:00 2001 From: Kris Nuttycombe Date: Thu, 11 Jan 2024 14:31:19 -0700 Subject: [PATCH] Fix Rust formatting. --- zcash_client_sqlite/src/wallet.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/zcash_client_sqlite/src/wallet.rs b/zcash_client_sqlite/src/wallet.rs index 881b300bb3..951d7af645 100644 --- a/zcash_client_sqlite/src/wallet.rs +++ b/zcash_client_sqlite/src/wallet.rs @@ -1459,7 +1459,9 @@ pub(crate) fn get_transparent_balances( } /// Returns a vector with the IDs of all accounts known to this wallet. -pub(crate) fn get_account_ids(conn: &rusqlite::Connection) -> Result, SqliteClientError> { +pub(crate) fn get_account_ids( + conn: &rusqlite::Connection, +) -> Result, SqliteClientError> { let mut stmt = conn.prepare("SELECT account FROM accounts")?; let mut rows = stmt.query([])?; let mut result = Vec::new();