Skip to content

Commit

Permalink
unimplemented notes
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Dec 27, 2023
1 parent c60ea2b commit 5f20b38
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
6 changes: 6 additions & 0 deletions core/src/modules/account_manager/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ impl Transactions {
let transactions = account.transactions();
if transactions.is_empty() {
ui.label(i18n("No transactions"));

#[cfg(target_arch = "wasm32")] {
ui.label("");
ui.label("Please note that transaction storage support in the browser is not yet implemented. Only transactions from the available UTXOs will be shown once the wallet is reloaded.");
ui.label("");
}
} else {
let total: u64 = transactions.iter().map(|transaction|transaction.aggregate_input_value()).sum();
transactions.iter().for_each(|transaction| {
Expand Down
5 changes: 5 additions & 0 deletions core/src/modules/account_manager/utxo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ impl UtxoManager {

egui::ScrollArea::vertical().auto_shrink([false,false]).show(ui, |ui| {
ui.label(i18n("UTXO Manager"));

ui.label("");
ui.label("UTXO management is not implemented in this alpha release.");
ui.label("");

});

}
Expand Down

0 comments on commit 5f20b38

Please sign in to comment.