Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
SWvheerden committed Feb 20, 2024
1 parent 3a3e39f commit d5411ce
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions applications/minotari_console_wallet/src/ui/state/app_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -565,9 +565,7 @@ impl AppState {
}

pub fn get_completed_txs(&self) -> Vec<&CompletedTransactionInfo> {
if self
.completed_tx_filter == TransactionFilter::AbandonedCoinbases
{
if self.completed_tx_filter == TransactionFilter::AbandonedCoinbases {
self.cached_data
.completed_txs
.iter()
Expand Down Expand Up @@ -1391,7 +1389,7 @@ impl Default for AppStateConfig {
}

#[derive(Clone, PartialEq)]
pub enum TransactionFilter{
None,
AbandonedCoinbases,
}
pub enum TransactionFilter {
None,
AbandonedCoinbases,
}

0 comments on commit d5411ce

Please sign in to comment.