docs: mark MC base currency implementation as completed in redesign plan

This commit is contained in:
mik-tf
2025-09-08 15:44:39 -04:00
parent abbf59207a
commit d9a449304c
16 changed files with 139 additions and 41 deletions

View File

@@ -180,9 +180,9 @@ impl WalletController {
let (currency, effective_currency) = match currency_service.get_currency(&display_currency) {
Some(c) => (c, display_currency.clone()),
None => {
let usd = currency_service.get_currency("USD").expect("USD currency must be available");
display_currency = "USD".to_string();
(usd, "USD".to_string())
let mc = currency_service.get_currency("MC").expect("MC currency must be available");
display_currency = "MC".to_string();
(mc, "MC".to_string())
}
};
@@ -258,9 +258,9 @@ impl WalletController {
let (currency, effective_currency) = match currency_service.get_currency(&display_currency) {
Some(c) => (c, display_currency.clone()),
None => {
let usd = currency_service.get_currency("USD").expect("USD currency must be available");
display_currency = "USD".to_string();
(usd, "USD".to_string())
let mc = currency_service.get_currency("MC").expect("MC currency must be available");
display_currency = "MC".to_string();
(mc, "MC".to_string())
}
};