Skip to content

Commit

Permalink
new code
Browse files Browse the repository at this point in the history
  • Loading branch information
btcltcdigger committed Dec 19, 2017
1 parent f6f76be commit 0a42378
Show file tree
Hide file tree
Showing 82 changed files with 197 additions and 193 deletions.
4 changes: 2 additions & 2 deletions contrib/debian/examples/novacoin.conf
Expand Up @@ -10,11 +10,11 @@
#proxy=127.0.0.1:9050

# Use as many addnode= settings as you like to connect to specific peers
#addnode=188.120.246.137:29029
#addnode=188.120.246.137:29303

# ... or use as many connect= settings as you like to connect ONLY
# to specific peers:
#connect=188.120.246.137:29029
#connect=188.120.246.137:29303

# Do not use Internet Relay Chat (irc.lfnet.org #novacoin channel) to
# find other peers.
Expand Down
6 changes: 3 additions & 3 deletions src/alert.cpp
Expand Up @@ -19,13 +19,13 @@ using namespace std;
map<uint256, CAlert> mapAlerts;
CCriticalSection cs_mapAlerts;

static const char* pszMainKey = "04c00fbcf74b87ccdd2faea3ba4804c1eac131077ddf0624917d4913d0167c40ec8442c060c9ea5dc94fe89a8877a5391e3314d432b91bcf45ed06dfb5c6432316";
static const char* pszMainKey = "046728ce9f00d8d10db6d1791153bcb62b9a78cb2081171c3f62a4bd3d3e06d929d7751cb2429cdd3012d388ae9d923cef17c916d779e8130e4b01176bf1856e4f";

// TestNet alerts pubKey
static const char* pszTestKey = "044af285cab41926dc7b5be2776b40afe76bedb1660868590dbecf03f2c0eaa10ce3f3df7e3975e090936001e3555300d563f0d92093e884b335504ba33cf116b1";
static const char* pszTestKey = "04141901107de0500b0dd3b97f7fe8dc728f2769a99ce21d8ec0eced533b401a0637f328c99d047e3c1f8586aca1963a676fe3d7fb4c6086702bbc9ffe91e3f49c";

// TestNet alerts private key
// "308201130201010420b665cff1884e53da26376fd1b433812c9a5a8a4d5221533b15b9629789bb7e42a081a53081a2020101302c06072a8648ce3d0101022100fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f300604010004010704410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8022100fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141020101a144034200044af285cab41926dc7b5be2776b40afe76bedb1660868590dbecf03f2c0eaa10ce3f3df7e3975e090936001e3555300d563f0d92093e884b335504ba33cf116b1"
// "308201130201010420b665cff1884e53da26376fd1b433812c9a5a8a4d5221533b15b9629789bb7e42a081a53081a2020101302c06072a8648ce3d0101022100fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f300604010004010704410479be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798483ada7726a3c4655da4fbfc0e1108a8fd17b448a68554199c47d08ffb10d4b8022100fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141020101a14403420004141901107de0500b0dd3b97f7fe8dc728f2769a99ce21d8ec0eced533b401a0637f328c99d047e3c1f8586aca1963a676fe3d7fb4c6086702bbc9ffe91e3f49c"

void CUnsignedAlert::SetNull()
{
Expand Down
2 changes: 1 addition & 1 deletion src/bitcoinrpc.cpp
Expand Up @@ -42,7 +42,7 @@ void ThreadRPCServer3(void* parg);

static inline unsigned short GetDefaultRPCPort()
{
return GetBoolArg("-testnet", false) ? 39030 : 29030;
return GetBoolArg("-testnet", false) ? 39304 : 29304;
}

Object JSONRPCError(int code, const string& message)
Expand Down
4 changes: 2 additions & 2 deletions src/init.cpp
Expand Up @@ -240,7 +240,7 @@ std::string HelpMessage()
" -socks=<n> " + _("Select the version of socks proxy to use (4-5, default: 5)") + "\n" +
" -tor=<ip:port> " + _("Use proxy to reach tor hidden services (default: same as -proxy)") + "\n"
" -dns " + _("Allow DNS lookups for -addnode, -seednode and -connect") + "\n" +
" -port=<port> " + _("Listen for connections on <port> (default: 29029 or testnet: 39029)") + "\n" +
" -port=<port> " + _("Listen for connections on <port> (default: 29303 or testnet: 39303)") + "\n" +
" -maxconnections=<n> " + _("Maintain at most <n> connections to peers (default: 125)") + "\n" +
" -addnode=<ip> " + _("Add a node to connect to and attempt to keep the connection open") + "\n" +
" -connect=<ip> " + _("Connect only to the specified node(s)") + "\n" +
Expand Down Expand Up @@ -285,7 +285,7 @@ std::string HelpMessage()
#endif
" -rpcuser=<user> " + _("Username for JSON-RPC connections") + "\n" +
" -rpcpassword=<pw> " + _("Password for JSON-RPC connections") + "\n" +
" -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 29030 or testnet: 39030)") + "\n" +
" -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 29304 or testnet: 39304)") + "\n" +
" -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n" +
" -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
" -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
Expand Down
4 changes: 2 additions & 2 deletions src/kernel.cpp
Expand Up @@ -14,13 +14,13 @@ typedef std::map<int, unsigned int> MapModifierCheckpoints;
// Hard checkpoints of stake modifiers to ensure they are deterministic
static std::map<int, unsigned int> mapStakeModifierCheckpoints =
boost::assign::map_list_of
( 0, 0xfd11f4e7 )
( 0, 0x0e00670bu )
;

// Hard checkpoints of stake modifiers to ensure they are deterministic (testNet)
static std::map<int, unsigned int> mapStakeModifierCheckpointsTestNet =
boost::assign::map_list_of
( 0, 0xfd11f4e7 )
( 0, 0x0e00670bu )
;

// Get time weight
Expand Down
4 changes: 4 additions & 0 deletions src/leveldb/desktop.ini
@@ -0,0 +1,4 @@
[ViewState]
Mode=
Vid=
FolderType=Documents
30 changes: 15 additions & 15 deletions src/main.cpp
Expand Up @@ -1137,7 +1137,7 @@ static unsigned int GetNextTargetRequiredV2(const CBlockIndex* pindexLast, bool

unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake)
{
if (pindexLast->nHeight < 1000)
if (pindexLast->nHeight < 10000)
return GetNextTargetRequiredV1(pindexLast, fProofOfStake);
else
return GetNextTargetRequiredV2(pindexLast, fProofOfStake);
Expand Down Expand Up @@ -2485,10 +2485,10 @@ bool LoadBlockIndex(bool fAllowNew)

if (fTestNet)
{
pchMessageStart[0] = 0xa2;
pchMessageStart[1] = 0x60;
pchMessageStart[2] = 0x90;
pchMessageStart[3] = 0x6f;
pchMessageStart[0] = 0x2d;
pchMessageStart[1] = 0x27;
pchMessageStart[2] = 0x8e;
pchMessageStart[3] = 0xab;

bnTrustedModulus.SetHex("f0d14cf72623dacfe738d0892b599be0f31052239cddd95a3f25101c801dc990453b38c9434efe3f372db39a32c2bb44cbaea72d62c8931fa785b0ec44531308df3e46069be5573e49bb29f4d479bfc3d162f57a5965db03810be7636da265bfced9c01a6b0296c77910ebdc8016f70174f0f18a57b3b971ac43a934c6aedbc5c866764a3622b5b7e3f9832b8b3f133c849dbcc0396588abcd1e41048555746e4823fb8aba5b3d23692c6857fccce733d6bb6ec1d5ea0afafecea14a0f6f798b6b27f77dc989c557795cc39a0940ef6bb29a7fc84135193a55bcfc2f01dd73efad1b69f45a55198bd0e6bef4d338e452f6a420f1ae2b1167b923f76633ab6e55");
bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
Expand Down Expand Up @@ -2524,23 +2524,23 @@ bool LoadBlockIndex(bool fAllowNew)

// MainNet:

//CBlock(hash=000001faef25dec4fbcf906e6242621df2c183bf232f263d0ba5b101911e4563, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1513015519, nBits=1e0fffff, nNonce=164482, vtx=1, vchBlockSig=)
// Coinbase(hash=12630d16a9, nTime=1513015519, ver=1, vin.size=1, vout.size=1, nLockTime=0)
//CBlock(hash=000001faef25dec4fbcf906e6242621df2c183bf232f263d0ba5b101911e4563, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1513245930, nBits=1e0fffff, nNonce=164482, vtx=1, vchBlockSig=)
// Coinbase(hash=12630d16a9, nTime=1513245930, ver=1, vin.size=1, vout.size=1, nLockTime=0)
// CTxIn(COutPoint(0000000000, 4294967295), coinbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341)
// CTxOut(empty)
// vMerkleTree: 12630d16a9

// TestNet:

//CBlock(hash=0000724595fb3b9609d441cbfb9577615c292abf07d996d3edabc48de843642d, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1513015519, nBits=1f00ffff, nNonce=216178, vtx=1, vchBlockSig=)
// Coinbase(hash=12630d16a9, nTime=1513015519, ver=1, vin.size=1, vout.size=1, nLockTime=0)
//CBlock(hash=0000724595fb3b9609d441cbfb9577615c292abf07d996d3edabc48de843642d, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=12630d16a97f24b287c8c2594dda5fb98c9e6c70fc61d44191931ea2aa08dc90, nTime=1513245930, nBits=1f00ffff, nNonce=216178, vtx=1, vchBlockSig=)
// Coinbase(hash=12630d16a9, nTime=1513245930, ver=1, vin.size=1, vout.size=1, nLockTime=0)
// CTxIn(COutPoint(0000000000, 4294967295), coinbase 00012a24323020466562203230313420426974636f696e2041544d7320636f6d6520746f20555341)
// CTxOut(empty)
// vMerkleTree: 12630d16a9

const char* pszTimestamp = "We forked the Abjcoin blockchain Today";
const char* pszTimestamp = "11the of 12th 2017 we made new chain";
CTransaction txNew;
txNew.nTime = 1513015519;
txNew.nTime = 1513245930;
txNew.vin.resize(1);
txNew.vout.resize(1);
txNew.vin[0].scriptSig = CScript() << 0 << CBigNum(42) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
Expand All @@ -2550,9 +2550,9 @@ bool LoadBlockIndex(bool fAllowNew)
block.hashPrevBlock = 0;
block.hashMerkleRoot = block.BuildMerkleTree();
block.nVersion = 1;
block.nTime = 1513015519;
block.nTime = 1513245930;
block.nBits = bnProofOfWorkLimit.GetCompact();
block.nNonce = !fTestNet ? 1929704 : 1929704;
block.nNonce = !fTestNet ? 4082709 : 4082709;

if (true && (block.GetHash() != hashGenesisBlock)) {

Expand All @@ -2578,7 +2578,7 @@ bool LoadBlockIndex(bool fAllowNew)
printf("block.nTime = %u \n", block.nTime);
printf("block.nNonce = %u \n", block.nNonce);

assert(block.hashMerkleRoot == uint256("0x6f1f6f4a969280199c7c50e81d8a6cab0a99c35aa9529f2f5e25b95dd1fcd08c"));
assert(block.hashMerkleRoot == uint256("0xdf7d5afdfa8de382a7de8eec9fe2ba4cc93de81cde612adc2da956ea246be3ea"));
assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
assert(block.CheckBlock());

Expand Down Expand Up @@ -2845,7 +2845,7 @@ bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ASCII, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
unsigned char pchMessageStart[4] = { 0x0d, 0xfd, 0x81, 0x4f };
unsigned char pchMessageStart[4] = { 0x22, 0x3d, 0x04, 0xa6 };

bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
{
Expand Down
6 changes: 3 additions & 3 deletions src/main.h
Expand Up @@ -28,7 +28,7 @@ class CNode;

class CTxMemPool;

static const int LAST_POW_BLOCK = 1000;
static const int LAST_POW_BLOCK = 10000;

/** The maximum allowed size for a serialized block, in bytes (network rule) */
static const unsigned int MAX_BLOCK_SIZE = 1000000;
Expand All @@ -54,8 +54,8 @@ static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov 5 00:53:20

static const int64_t COIN_YEAR_REWARD = 15 * CENT;

static const uint256 hashGenesisBlock("0x00000e0fd31c282227bf241fe375fee9198b2ee7e41223492058aea25a10e58e");
static const uint256 hashGenesisBlockTestNet("0x00000e0fd31c282227bf241fe375fee9198b2ee7e41223492058aea25a10e58e");
static const uint256 hashGenesisBlock("0x00000bf8b00b2cf56e2f21be313e922aa54c211c8a22417dc9867fff35a5fdb1");
static const uint256 hashGenesisBlockTestNet("0x00000bf8b00b2cf56e2f21be313e922aa54c211c8a22417dc9867fff35a5fdb1");

inline int64_t PastDrift(int64_t nTime) { return nTime - 10 * 60; } // up to 10 minutes from the past
inline int64_t FutureDrift(int64_t nTime) { return nTime + 10 * 60; } // up to 10 minutes from the future
Expand Down
2 changes: 1 addition & 1 deletion src/net.cpp
Expand Up @@ -1229,8 +1229,8 @@ void MapPort()
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
{"93.188.165.196", "93.188.165.196"},
{"209.188.21.177", "209.188.21.177"},
{"199.188.207.212", "199.188.207.212"},
};

void ThreadDNSAddressSeed(void* parg)
Expand Down
2 changes: 1 addition & 1 deletion src/protocol.h
Expand Up @@ -18,7 +18,7 @@
extern bool fTestNet;
static inline unsigned short GetDefaultPort(const bool testnet = fTestNet)
{
return testnet ? 39029 : 29029;
return testnet ? 39303 : 29303;
}


Expand Down
4 changes: 2 additions & 2 deletions src/qt/bitcoinstrings.cpp
Expand Up @@ -49,7 +49,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Connect through socks proxy"),
QT_TRANSLATE_NOOP("bitcoin-core", "Select the version of socks proxy to use (4-5, default: 5)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Use proxy to reach tor hidden services (default: same as -proxy)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow DNS lookups for -addnode, -seednode and -connect"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 29029 or testnet: 39029)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Listen for connections on <port> (default: 29303 or testnet: 39303)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Maintain at most <n> connections to peers (default: 125)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Add a node to connect to and attempt to keep the connection open"),
QT_TRANSLATE_NOOP("bitcoin-core", "Connect only to the specified node(s)"),
Expand Down Expand Up @@ -92,7 +92,7 @@ QT_TRANSLATE_NOOP("bitcoin-core", "Send trace/debug info to debugger"),
QT_TRANSLATE_NOOP("bitcoin-core", "Username for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", "Password for JSON-RPC connections"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
"Listen for JSON-RPC connections on <port> (default: 29030 or testnet: 39030)"),
"Listen for JSON-RPC connections on <port> (default: 29304 or testnet: 39304)"),
QT_TRANSLATE_NOOP("bitcoin-core", "Allow JSON-RPC connections from specified IP address"),
QT_TRANSLATE_NOOP("bitcoin-core", "Send commands to node running on <ip> (default: 127.0.0.1)"),
QT_TRANSLATE_NOOP("bitcoin-core", ""
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_af_ZA.ts
Expand Up @@ -2650,7 +2650,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2710,7 +2710,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_ar.ts
Expand Up @@ -2653,7 +2653,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2713,7 +2713,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_be_BY.ts
Expand Up @@ -2654,7 +2654,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2714,7 +2714,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_bg.ts
Expand Up @@ -2655,7 +2655,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2715,7 +2715,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_bs.ts
Expand Up @@ -2650,7 +2650,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2710,7 +2710,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_ca.ts
Expand Up @@ -2650,7 +2650,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2710,7 +2710,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down
4 changes: 2 additions & 2 deletions src/qt/locale/bitcoin_ca@valencia.ts
Expand Up @@ -2650,7 +2650,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="+6"/>
<source>Listen for connections on &lt;port&gt; (default: 29029 or testnet: 39029)</source>
<source>Listen for connections on &lt;port&gt; (default: 29303 or testnet: 39303)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down Expand Up @@ -2710,7 +2710,7 @@ This label turns red, if the priority is smaller than &quot;medium&quot;.
</message>
<message>
<location line="-87"/>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29030 or testnet: 39030)</source>
<source>Listen for JSON-RPC connections on &lt;port&gt; (default: 29304 or testnet: 39304)</source>
<translation type="unfinished"/>
</message>
<message>
Expand Down

0 comments on commit 0a42378

Please sign in to comment.