From dfcdfd87d18092788a4580cab1f2240588c6c28c Mon Sep 17 00:00:00 2001
From: Justin Ehrenhofer <justin.ehrenhofer@gmail.com>
Date: Tue, 28 Feb 2023 10:03:31 -0600
Subject: [PATCH] [skip ci] Remove Haven USD hardcode

---
 lib/reactions/on_current_wallet_change.dart | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/lib/reactions/on_current_wallet_change.dart b/lib/reactions/on_current_wallet_change.dart
index 270415820..89b096d86 100644
--- a/lib/reactions/on_current_wallet_change.dart
+++ b/lib/reactions/on_current_wallet_change.dart
@@ -66,11 +66,6 @@ void startCurrentWalletChangeReaction(AppStore appStore,
           PreferencesKey.currentWalletType, serializeToInt(wallet.type));
       await wallet.connectToNode(node: node);
 
-      if (wallet.type == WalletType.haven) {
-        settingsStore.fiatCurrency = FiatCurrency.usd;
-        await updateHavenRate(fiatConversionStore);
-      }
-
       if (wallet.walletInfo.address?.isEmpty ?? true) {
         wallet.walletInfo.address = wallet.walletAddresses.address;