Just bigger numbers

This commit is contained in:
Yoichi Hirai 2017-04-11 15:52:56 +02:00 committed by chriseth
parent e1689b6fbc
commit 38211fdc25

View File

@ -68,7 +68,7 @@ private:
int m_socket;
/// Socket read timeout in milliseconds. Needs to be large because the key generation routine
/// might take long.
unsigned static constexpr m_readTimeOutMS = 30000;
unsigned static constexpr m_readTimeOutMS = 300000;
char m_readBuf[512000];
};
#endif
@ -133,7 +133,7 @@ private:
IPCSocket m_ipcSocket;
size_t m_rpcSequence = 1;
unsigned m_maxMiningTime = 1200000; // 120 seconds
unsigned m_maxMiningTime = 6000000; // 600 seconds
unsigned m_sleepTime = 10; // 10 milliseconds
unsigned m_successfulMineRuns = 0;