Fixes and #1.9.3 Preparation
This commit is contained in:
parent
8824dec49a
commit
a5f1bee515
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
# 1.9.3
|
||||
- Fixed Multihashfactor auto detection for CN-Ultralite/Extremelite #248
|
||||
- Fixed donation address for UPX2/CN-Extremelite
|
||||
# 1.9.2
|
||||
- Integrated cn-extremelite a.k.a upx2 (algo: "cryptonight-extremelite", variant: "upx2")
|
||||
- Improved hashfactor autodetection for cnv8 and r based coins
|
||||
|
|
|
@ -94,7 +94,7 @@ void CpuImpl::optimizeParameters(size_t& threadsCount, size_t& hashFactor,
|
|||
|
||||
if (algo == Options::ALGO_CRYPTONIGHT_HEAVY || powVariant == POW_XFH) {
|
||||
maximumReasonableHashFactor = 3;
|
||||
} else if (getBaseVariant(powVariant) == POW_V2 || getBaseVariant(powVariant) == POW_V4) {
|
||||
} else if (getBaseVariant(powVariant) == POW_V2 || getBaseVariant(powVariant) == POW_V4 || algo == Options::ALGO_CRYPTONIGHT_EXTREMELITE || algo == Options::ALGO_CRYPTONIGHT_ULTRALITE) {
|
||||
maximumReasonableHashFactor = 2;
|
||||
}
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ DonateStrategy::DonateStrategy(const char *agent, IStrategyListener *listener) :
|
|||
} else if (Options::i()->algo() == Options::ALGO_CRYPTONIGHT_ULTRALITE) {
|
||||
url = new Url("donate2.graef.in", 8088, userId, nullptr, false, false, true);
|
||||
} else if (Options::i()->algo() == Options::ALGO_CRYPTONIGHT_EXTREMELITE) {
|
||||
url = new Url("donate2.graef.in", 8088, userId, nullptr, false, false, true);
|
||||
url = new Url("donate2.graef.in", 8188, userId, nullptr, false, false, true);
|
||||
} else {
|
||||
url = new Url("donate2.graef.in", 80, userId, nullptr, false, false, true);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue