Skip to content

Commit

Permalink
Fix Rust formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttycom committed Jan 11, 2024
1 parent 28ed048 commit 6033671
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion zcash_client_sqlite/src/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 6033671

Please sign in to comment.