Halve timeouts

This commit is contained in:
Ross Nicoll 2021-02-07 22:57:46 +00:00
parent a4638bb50f
commit f9b9a591b8
2 changed files with 6 additions and 6 deletions

View file

@ -36,7 +36,7 @@ from threading import RLock
from threading import Thread
import logging
import copy
import ltc_scrypt
import litecoin_scrypt
from test_framework.siphash import siphash256
BIP0031_VERSION = 60000
@ -583,7 +583,7 @@ class CBlockHeader(object):
r += struct.pack("<I", self.nNonce)
self.sha256 = uint256_from_str(hash256(r))
self.hash = encode(hash256(r)[::-1], 'hex_codec').decode('ascii')
self.scrypt256 = uint256_from_str(ltc_scrypt.getPoWHash(r))
self.scrypt256 = uint256_from_str(litecoin_scrypt.getPoWHash(r))
def rehash(self):
self.sha256 = None

View file

@ -119,10 +119,10 @@ static const unsigned int INVENTORY_BROADCAST_MAX = 7 * INVENTORY_BROADCAST_INTE
static const unsigned int AVG_FEEFILTER_BROADCAST_INTERVAL = 10 * 60;
/** Maximum feefilter broadcast delay after significant change. */
static const unsigned int MAX_FEEFILTER_CHANGE_DELAY = 5 * 60;
/** Block download timeout base, expressed in millionths of the block interval (i.e. 10 min) */
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 10000000;
/** Additional block download timeout per parallel downloading peer (i.e. 5 min) */
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 5000000;
/** Block download timeout base, expressed in millionths of the block interval (i.e. 5 min) */
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_BASE = 5000000;
/** Additional block download timeout per parallel downloading peer (i.e. 2.5 min) */
static const int64_t BLOCK_DOWNLOAD_TIMEOUT_PER_PEER = 2500000;
static const unsigned int DEFAULT_LIMITFREERELAY = 0;
static const bool DEFAULT_RELAYPRIORITY = true;