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(""); + }); }