WARNING!!!!!!!!!!!!!!!!!!!!!
THE X11 CODE ON GITHUB HAS BUGS!!!!!!!!!!
THE RPC AND P2P PORTS ARE SET THE SAME SO ITS IMPOSSIBLE TO BUILD FROM SCRATCH AND HAVE A WORKING CLIENT.
THIS IS ONE OF THE MOST BASIC CONCEPTS IN BITCOIN. WHOEVER WOULD SET THESE PORTS THE SAME IS COMPLETELY IDIOTIC.
ITS AMATEUR HOUR AT XC COIN. I WOULD SHORT THIS THING AND SELL IT UNTIL IT HITS ZERO.
WHO KNOWS IF THE CLIENTS YOU ARE RUNNING ARE EVEN THE SAME AS THE SOURCE?
?? TOTALLY INSECURE TO RUN THIS!!!!!!
bitcoinrpc.cpp
static inline unsigned short GetDefaultRPCPort()
{
return GetBoolArg("-testnet", false) ? 22347 : 32347;
}
protocol.h
static inline unsigned short GetDefaultPort(const bool testnet = fTestNet)
{
return testnet ? 22347 : 32348;
}
Not really something to get worried about.
Testnet uses the same port for rpc and http but mainnet is fine.
Nevertheless... it should be corrected.