Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/activation-v2-boilerplate' int…
Browse files Browse the repository at this point in the history
…o nogeo
  • Loading branch information
cipig committed Dec 20, 2023
2 parents a8a6ea3 + 63da539 commit 95cbc4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions atomic_defi_design/Dex/Constants/Style.qml
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ QtObject {
case 'QRC-20': return dark_theme ? colorCoinDark["QTUM"] : colorCoin["QTUM"]
case 'KRC-20': return dark_theme ? colorCoinDark["KCS"] : colorCoin["KCS"]
case 'Smart Chain': return dark_theme ? colorCoinDark["KMD"] : colorCoin["KMD"]
case 'Matic':
case 'PLG-20': return dark_theme ? colorCoinDark["MATIC"] : colorCoin["MATIC"]
case 'Moonriver': return dark_theme ? colorCoinDark["MOVR"] : colorCoin["MOVR"]
case 'HRC-20': return dark_theme ? colorCoinDark["ONE"] : colorCoin["ONE"]
Expand Down Expand Up @@ -245,6 +246,7 @@ QtObject {
case 'QRC-20': return dark_theme ? colorCoinDark["QTUM"] : colorCoin["QTUM"]
case 'KRC-20': return dark_theme ? colorCoinDark["KCS"] : colorCoin["KCS"]
case 'Smart Chain': return dark_theme ? colorCoinDark["KMD"] : colorCoin["KMD"]
case 'Matic':
case 'PLG-20': return dark_theme ? colorCoinDark["MATIC"] : colorCoin["MATIC"]
case 'Moonriver': return dark_theme ? colorCoinDark["MOVR"] : colorCoin["MOVR"]
case 'HRC-20': return dark_theme ? colorCoinDark["ONE"] : colorCoin["ONE"]
Expand Down
4 changes: 2 additions & 2 deletions src/core/atomicdex/services/mm2/mm2.service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -611,13 +611,13 @@ namespace atomic_dex
{
SPDLOG_INFO(">>>>>>>>>>>>>>>>>>>>>>>>>>> Enabling {} BEP20 coins <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<", bep20_coins.size());
// enable_erc20_coins(bep20_coins, "BNB");
enable_erc_family_coins(erc_family_coins);
enable_erc_family_coins(bep20_coins);
}
if (bep20_testnet_coins.size() > 0)
{
SPDLOG_INFO(">>>>>>>>>>>>>>>>>>>>>>>>>>> Enabling {} bep20_testnet_coins <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<", bep20_testnet_coins.size());
// enable_erc20_coins(bep20_testnet_coins, "BNBT");
enable_erc_family_coins(erc_family_coins);
enable_erc_family_coins(bep20_testnet_coins);
}
if (erc_family_coins.size() > 0)
{
Expand Down

0 comments on commit 95cbc4d

Please sign in to comment.