aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2017-03-20 19:37:48 +0800
committerchriseth <chris@ethereum.org>2017-04-25 22:47:44 +0800
commite1689b6fbc61874497edc252171bfac089c34681 (patch)
tree85ba775af0e509afd939787556a75f233b545e49 /test
parentff00a14becb1be390da4ae61cf1908f3dd9a09fe (diff)
downloaddexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar.gz
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar.bz2
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar.lz
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar.xz
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.tar.zst
dexon-solidity-e1689b6fbc61874497edc252171bfac089c34681.zip
Also increase socket read timeout.
Diffstat (limited to 'test')
-rw-r--r--test/RPCSession.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/RPCSession.h b/test/RPCSession.h
index 76bdbda5..45004d69 100644
--- a/test/RPCSession.h
+++ b/test/RPCSession.h
@@ -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 = 15000;
+ unsigned static constexpr m_readTimeOutMS = 30000;
char m_readBuf[512000];
};
#endif