mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +01:00
Merge pull request #2456 from Diapolo/code-layout
small indentation, space, formatting fixes (no code changes)
This commit is contained in:
commit
484af4e2d1
11
src/init.cpp
11
src/init.cpp
@ -217,16 +217,16 @@ bool AppInit(int argc, char* argv[])
|
|||||||
PrintExceptionContinue(NULL, "AppInit()");
|
PrintExceptionContinue(NULL, "AppInit()");
|
||||||
}
|
}
|
||||||
if (!fRet) {
|
if (!fRet) {
|
||||||
if (detectShutdownThread)
|
if (detectShutdownThread)
|
||||||
detectShutdownThread->interrupt();
|
detectShutdownThread->interrupt();
|
||||||
threadGroup.interrupt_all();
|
threadGroup.interrupt_all();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (detectShutdownThread)
|
if (detectShutdownThread)
|
||||||
{
|
{
|
||||||
detectShutdownThread->join();
|
detectShutdownThread->join();
|
||||||
delete detectShutdownThread;
|
delete detectShutdownThread;
|
||||||
detectShutdownThread = NULL;
|
detectShutdownThread = NULL;
|
||||||
}
|
}
|
||||||
Shutdown();
|
Shutdown();
|
||||||
|
|
||||||
@ -376,7 +376,6 @@ struct CImportingNow
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
|
void ThreadImport(std::vector<boost::filesystem::path> vImportFiles)
|
||||||
{
|
{
|
||||||
RenameThread("bitcoin-loadblk");
|
RenameThread("bitcoin-loadblk");
|
||||||
@ -633,7 +632,6 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||||||
// ********************************************************* Step 6: network initialization
|
// ********************************************************* Step 6: network initialization
|
||||||
|
|
||||||
int nSocksVersion = GetArg("-socks", 5);
|
int nSocksVersion = GetArg("-socks", 5);
|
||||||
|
|
||||||
if (nSocksVersion != 4 && nSocksVersion != 5)
|
if (nSocksVersion != 4 && nSocksVersion != 5)
|
||||||
return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
|
return InitError(strprintf(_("Unknown -socks proxy version requested: %i"), nSocksVersion));
|
||||||
|
|
||||||
@ -733,6 +731,7 @@ bool AppInit2(boost::thread_group& threadGroup)
|
|||||||
|
|
||||||
fReindex = GetBoolArg("-reindex");
|
fReindex = GetBoolArg("-reindex");
|
||||||
|
|
||||||
|
// Todo: Check if needed, because in step 5 we do the same
|
||||||
if (!bitdb.Open(GetDataDir()))
|
if (!bitdb.Open(GetDataDir()))
|
||||||
{
|
{
|
||||||
string msg = strprintf(_("Error initializing database environment %s!"
|
string msg = strprintf(_("Error initializing database environment %s!"
|
||||||
|
12
src/main.cpp
12
src/main.cpp
@ -2655,12 +2655,12 @@ bool VerifyDB() {
|
|||||||
CBlockIndex *pindex = pindexState;
|
CBlockIndex *pindex = pindexState;
|
||||||
while (pindex != pindexBest) {
|
while (pindex != pindexBest) {
|
||||||
boost::this_thread::interruption_point();
|
boost::this_thread::interruption_point();
|
||||||
pindex = pindex->pnext;
|
pindex = pindex->pnext;
|
||||||
CBlock block;
|
CBlock block;
|
||||||
if (!block.ReadFromDisk(pindex))
|
if (!block.ReadFromDisk(pindex))
|
||||||
return error("VerifyDB() : *** block.ReadFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
|
return error("VerifyDB() : *** block.ReadFromDisk failed at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
|
||||||
if (!block.ConnectBlock(state, pindex, coins))
|
if (!block.ConnectBlock(state, pindex, coins))
|
||||||
return error("VerifyDB() : *** found unconnectable block at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
|
return error("VerifyDB() : *** found unconnectable block at %d, hash=%s", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
24
src/net.cpp
24
src/net.cpp
@ -344,13 +344,13 @@ bool GetMyExternalIP(CNetAddr& ipRet)
|
|||||||
for (int nLookup = 0; nLookup <= 1; nLookup++)
|
for (int nLookup = 0; nLookup <= 1; nLookup++)
|
||||||
for (int nHost = 1; nHost <= 2; nHost++)
|
for (int nHost = 1; nHost <= 2; nHost++)
|
||||||
{
|
{
|
||||||
// We should be phasing out our use of sites like these. If we need
|
// We should be phasing out our use of sites like these. If we need
|
||||||
// replacements, we should ask for volunteers to put this simple
|
// replacements, we should ask for volunteers to put this simple
|
||||||
// php file on their web server that prints the client IP:
|
// php file on their web server that prints the client IP:
|
||||||
// <?php echo $_SERVER["REMOTE_ADDR"]; ?>
|
// <?php echo $_SERVER["REMOTE_ADDR"]; ?>
|
||||||
if (nHost == 1)
|
if (nHost == 1)
|
||||||
{
|
{
|
||||||
addrConnect = CService("91.198.22.70",80); // checkip.dyndns.org
|
addrConnect = CService("91.198.22.70", 80); // checkip.dyndns.org
|
||||||
|
|
||||||
if (nLookup == 1)
|
if (nLookup == 1)
|
||||||
{
|
{
|
||||||
@ -424,12 +424,10 @@ void AddressCurrentlyConnected(const CService& addr)
|
|||||||
|
|
||||||
CNode* FindNode(const CNetAddr& ip)
|
CNode* FindNode(const CNetAddr& ip)
|
||||||
{
|
{
|
||||||
{
|
LOCK(cs_vNodes);
|
||||||
LOCK(cs_vNodes);
|
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
if ((CNetAddr)pnode->addr == ip)
|
||||||
if ((CNetAddr)pnode->addr == ip)
|
return (pnode);
|
||||||
return (pnode);
|
|
||||||
}
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -444,12 +442,10 @@ CNode* FindNode(std::string addrName)
|
|||||||
|
|
||||||
CNode* FindNode(const CService& addr)
|
CNode* FindNode(const CService& addr)
|
||||||
{
|
{
|
||||||
{
|
LOCK(cs_vNodes);
|
||||||
LOCK(cs_vNodes);
|
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
if ((CService)pnode->addr == addr)
|
||||||
if ((CService)pnode->addr == addr)
|
return (pnode);
|
||||||
return (pnode);
|
|
||||||
}
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,6 +61,7 @@ public:
|
|||||||
void removeAllWallets();
|
void removeAllWallets();
|
||||||
|
|
||||||
/** Used by WalletView to allow access to needed QActions */
|
/** Used by WalletView to allow access to needed QActions */
|
||||||
|
// Todo: Use Qt signals for these
|
||||||
QAction * getOverviewAction() { return overviewAction; }
|
QAction * getOverviewAction() { return overviewAction; }
|
||||||
QAction * getHistoryAction() { return historyAction; }
|
QAction * getHistoryAction() { return historyAction; }
|
||||||
QAction * getAddressBookAction() { return addressBookAction; }
|
QAction * getAddressBookAction() { return addressBookAction; }
|
||||||
|
@ -37,6 +37,7 @@ class QLocalServer;
|
|||||||
class PaymentServer : public QObject
|
class PaymentServer : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
private:
|
private:
|
||||||
bool saveURIs;
|
bool saveURIs;
|
||||||
QLocalServer* uriServer;
|
QLocalServer* uriServer;
|
||||||
|
18
src/util.cpp
18
src/util.cpp
@ -1072,7 +1072,7 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific)
|
|||||||
|
|
||||||
fs::create_directory(path);
|
fs::create_directory(path);
|
||||||
|
|
||||||
cachedPath[fNetSpecific]=true;
|
cachedPath[fNetSpecific] = true;
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1336,14 +1336,14 @@ void seed_insecure_rand(bool fDeterministic)
|
|||||||
insecure_rand_Rz = insecure_rand_Rw = 11;
|
insecure_rand_Rz = insecure_rand_Rw = 11;
|
||||||
} else {
|
} else {
|
||||||
uint32_t tmp;
|
uint32_t tmp;
|
||||||
do{
|
do {
|
||||||
RAND_bytes((unsigned char*)&tmp,4);
|
RAND_bytes((unsigned char*)&tmp, 4);
|
||||||
}while(tmp==0 || tmp==0x9068ffffU);
|
} while(tmp == 0 || tmp == 0x9068ffffU);
|
||||||
insecure_rand_Rz=tmp;
|
insecure_rand_Rz = tmp;
|
||||||
do{
|
do {
|
||||||
RAND_bytes((unsigned char*)&tmp,4);
|
RAND_bytes((unsigned char*)&tmp, 4);
|
||||||
}while(tmp==0 || tmp==0x464fffffU);
|
} while(tmp == 0 || tmp == 0x464fffffU);
|
||||||
insecure_rand_Rw=tmp;
|
insecure_rand_Rw = tmp;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -419,9 +419,9 @@ extern uint32_t insecure_rand_Rz;
|
|||||||
extern uint32_t insecure_rand_Rw;
|
extern uint32_t insecure_rand_Rw;
|
||||||
static inline uint32_t insecure_rand(void)
|
static inline uint32_t insecure_rand(void)
|
||||||
{
|
{
|
||||||
insecure_rand_Rz=36969*(insecure_rand_Rz&65535)+(insecure_rand_Rz>>16);
|
insecure_rand_Rz = 36969 * (insecure_rand_Rz & 65535) + (insecure_rand_Rz >> 16);
|
||||||
insecure_rand_Rw=18000*(insecure_rand_Rw&65535)+(insecure_rand_Rw>>16);
|
insecure_rand_Rw = 18000 * (insecure_rand_Rw & 65535) + (insecure_rand_Rw >> 16);
|
||||||
return (insecure_rand_Rw<<16)+insecure_rand_Rz;
|
return (insecure_rand_Rw << 16) + insecure_rand_Rz;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -622,11 +622,11 @@ bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys)
|
|||||||
|
|
||||||
bool fSuccess = allOK;
|
bool fSuccess = allOK;
|
||||||
Db* pdbCopy = new Db(&dbenv.dbenv, 0);
|
Db* pdbCopy = new Db(&dbenv.dbenv, 0);
|
||||||
int ret = pdbCopy->open(NULL, // Txn pointer
|
int ret = pdbCopy->open(NULL, // Txn pointer
|
||||||
filename.c_str(), // Filename
|
filename.c_str(), // Filename
|
||||||
"main", // Logical db name
|
"main", // Logical db name
|
||||||
DB_BTREE, // Database type
|
DB_BTREE, // Database type
|
||||||
DB_CREATE, // Flags
|
DB_CREATE, // Flags
|
||||||
0);
|
0);
|
||||||
if (ret > 0)
|
if (ret > 0)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user