Skip to content

Commit

Permalink
Merge pull request #2405 from KomodoPlatform/fix-custom-evm-send
Browse files Browse the repository at this point in the history
default is_testnet should be false
  • Loading branch information
smk762 authored Jan 18, 2024
2 parents 09cb34b + 2afb288 commit 40c1248
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/atomicdex/pages/qt.settings.page.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ namespace atomic_dex
out["adex_cfg"][ticker]["explorer_url"] = coin_info.explorer_url;
out["adex_cfg"][ticker]["fallback_swap_contract"] = coin_info.swap_contract_address;
out["adex_cfg"][ticker]["fname"] = name_lowercase;
out["adex_cfg"][ticker]["is_testnet"] = true;
out["adex_cfg"][ticker]["is_testnet"] = false;
out["adex_cfg"][ticker]["currently_enabled"] = false;
out["adex_cfg"][ticker]["mm2"] = 1;
out["adex_cfg"][ticker]["name"] = name_lowercase;
Expand Down

0 comments on commit 40c1248

Please sign in to comment.