Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
agubarev committed May 2, 2023
1 parent df2f5eb commit 7a51f80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,10 @@ impl BurnTab {
))
},
Ok(_) => {
Handle::current().block_on(app_state.update_cache());
Handle::current()
.block_on(app_state.refresh_burnt_proofs_state())
.unwrap();
Handle::current().block_on(app_state.update_cache());

reset_fields = true
},
Expand Down
5 changes: 3 additions & 2 deletions applications/tari_console_wallet/src/ui/state/app_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ impl AppState {
},
};

tokio::spawn(send_burn_transaction_task(
send_burn_transaction_task(
burn_proof_filepath,
claim_public_key,
MicroTari::from(amount),
Expand All @@ -426,7 +426,8 @@ impl AppState {
tx_service_handle,
inner.wallet.db.clone(),
result_tx,
));
)
.await;

Ok(())
}
Expand Down

0 comments on commit 7a51f80

Please sign in to comment.