Skip to content

Commit

Permalink
update p2p port
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Dec 15, 2024
1 parent 877ae8b commit a0ba1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/chainparamsbase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ std::unique_ptr<CBaseChainParams> CreateBaseChainParams(const ChainType chain)
case ChainType::MAIN:
return std::make_unique<CBaseChainParams>("", 48484, 8334);
case ChainType::TESTNET:
return std::make_unique<CBaseChainParams>("testnet4", 48480, 18330);
return std::make_unique<CBaseChainParams>("testnet4", 33477, 18330);
case ChainType::SIGNET:
return std::make_unique<CBaseChainParams>("signet", 48487, 38334);
case ChainType::REGTEST:
Expand Down
2 changes: 1 addition & 1 deletion src/kernel/chainparams.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ static CBlock CreateGenesisBlock(uint32_t nTime, uint32_t nNonce, uint32_t nBits
pchMessageStart[1] = 0xc3;
pchMessageStart[2] = 0x31;
pchMessageStart[3] = 0x0d;
nDefaultPort = 48480;
nDefaultPort = 33477;
nPruneAfterHeight = 1000;
m_assumed_blockchain_size = 10;
m_assumed_chain_state_size = 3;
Expand Down

0 comments on commit a0ba1df

Please sign in to comment.