docs: mark MC base currency implementation as completed in redesign plan
This commit is contained in:
@@ -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())
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user