Fix Rust formatting.

This commit is contained in:
Kris Nuttycombe 2024-01-11 14:31:19 -07:00
parent 28ed048c7e
commit 60336714f7
1 changed files with 3 additions and 1 deletions

View File

@ -1459,7 +1459,9 @@ pub(crate) fn get_transparent_balances<P: consensus::Parameters>(
}
/// Returns a vector with the IDs of all accounts known to this wallet.
pub(crate) fn get_account_ids(conn: &rusqlite::Connection) -> Result<Vec<AccountId>, SqliteClientError> {
pub(crate) fn get_account_ids(
conn: &rusqlite::Connection,
) -> Result<Vec<AccountId>, SqliteClientError> {
let mut stmt = conn.prepare("SELECT account FROM accounts")?;
let mut rows = stmt.query([])?;
let mut result = Vec::new();