From 5f20b381d57d85aa8f84b9f7bf08fa656135ad23 Mon Sep 17 00:00:00 2001 From: Anton Yemelyanov Date: Wed, 27 Dec 2023 04:01:57 +0200 Subject: [PATCH] unimplemented notes --- core/src/modules/account_manager/transactions.rs | 6 ++++++ core/src/modules/account_manager/utxo.rs | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/core/src/modules/account_manager/transactions.rs b/core/src/modules/account_manager/transactions.rs index b1601bf..8d54c2e 100644 --- a/core/src/modules/account_manager/transactions.rs +++ b/core/src/modules/account_manager/transactions.rs @@ -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| { diff --git a/core/src/modules/account_manager/utxo.rs b/core/src/modules/account_manager/utxo.rs index 734cd97..defbb1d 100644 --- a/core/src/modules/account_manager/utxo.rs +++ b/core/src/modules/account_manager/utxo.rs @@ -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(""); + }); }