Seems that sha256T (tripple) is not working with 'normal' miners?
All invalid shares on my pool.
SHA256D working fine.
Need more info about that "tripple"
Removed coin by now.
Regards!
TheMiningPool
Of course it does not work with "normal" miners, why would it? Its a different algorithm.
See here, the first is sha256d and the second one is sha256t:
https://github.com/theone-and-not-only-coin/onecoin/blob/master/src/hash.h#L14-L36template
inline uint256 Hash(const T1 pbegin, const T1 pend)
{
static unsigned char pblank[1];
uint256 hash1;
SHA256((pbegin == pend ? pblank : (unsigned char*)&pbegin[0]), (pend - pbegin) * sizeof(pbegin[0]), (unsigned char*)&hash1);
uint256 hash2;
SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
return hash2;
}
template
inline uint256 Hash_sha256t(const T1 pbegin, const T1 pend)
{
static unsigned char pblank[1];
uint256 hash1;
SHA256((pbegin == pend ? pblank : (unsigned char*)&pbegin[0]), (pend - pbegin) * sizeof(pbegin[0]), (unsigned char*)&hash1);
uint256 hash2;
SHA256((unsigned char*)&hash1, sizeof(hash1), (unsigned char*)&hash2);
uint256 hash3;
SHA256((unsigned char*)&hash2, sizeof(hash2), (unsigned char*)&hash3);
return hash3;
}
Extra round of sha256, making existing ASICs useless for this coin. sha256d will not work