Skip to content

Commit

Permalink
update match
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Coats committed Nov 9, 2023
1 parent 7177ebb commit 91ef873
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sdk/src/wallet/operations/syncing/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ where
if let Some(tx_state) = metadata.transaction_state {
match tx_state {
// TODO: Separate TransactionState::Finalized?
TransactionState::Finalized | TransactionState::Confirmed => {
TransactionState::Accepted
| TransactionState::Confirmed
| TransactionState::Finalized => {
log::debug!(
"[SYNC] confirmed transaction {transaction_id} in block {}",
metadata.block_id
Expand Down

0 comments on commit 91ef873

Please sign in to comment.