Skip to content

Commit

Permalink
Fix rpc and tor ports for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
Mixa84 committed Sep 10, 2024
1 parent 34128e7 commit c086bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chainparamsbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const std::string& chain
if (chain == CBaseChainParams::MAIN) {
return std::make_unique<CBaseChainParams>("", 8332, 18332, 8334);
} else if (chain == CBaseChainParams::TESTNET) {
return std::make_unique<CBaseChainParams>("testnet3", 18332, 8332, 18334);
return std::make_unique<CBaseChainParams>("testnet3", 18776, 18332, 18778);
} else if (chain == CBaseChainParams::SIGNET) {
return std::make_unique<CBaseChainParams>("signet", 38332, 18332, 38334);
} else if (chain == CBaseChainParams::REGTEST) {
Expand Down

0 comments on commit c086bf2

Please sign in to comment.