This commit is contained in:
fosse 2023-11-15 09:08:48 -05:00
parent cba3fc65ce
commit 3e7087b7f3

View file

@ -53,7 +53,7 @@ class MainActions {
case WalletType.bitcoin: case WalletType.bitcoin:
case WalletType.litecoin: case WalletType.litecoin:
case WalletType.ethereum: case WalletType.ethereum:
// case WalletType.bitcoinCash: // TODO: add sign message function to BCH first // case WalletType.bitcoinCash: // TODO: add sign message function to BCH first
switch (defaultBuyProvider) { switch (defaultBuyProvider) {
case BuyProviderType.AskEachTime: case BuyProviderType.AskEachTime:
Navigator.pushNamed(context, Routes.buy); Navigator.pushNamed(context, Routes.buy);
@ -102,7 +102,7 @@ class MainActions {
if (!viewModel.isEnabledExchangeAction) return; if (!viewModel.isEnabledExchangeAction) return;
final defaultExchangeProvider = viewModel.defaultExchangeProvider; final defaultExchangeProvider = viewModel.defaultExchangeProvider;
final walletType = viewModel.type; final walletType = viewModel.type;
switch (walletType) { switch (walletType) {
case WalletType.bitcoin: case WalletType.bitcoin:
case WalletType.litecoin: case WalletType.litecoin: