TrinityCoin (OP)
|
|
July 22, 2015, 12:14:29 PM |
|
{ "blocks" : 915478, "currentblocksize" : 0, "currentblocktx" : 0, "pow_algo_id" : 0, "pow_algo" : "sha256d", "difficulty" : 2374001.05920456, "difficulty_sha256d" : 2374001.05920456, "difficulty_scrypt" : 41.30313079, "difficulty_groestl" : 5.44014465, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
Wow! 2.4 mil dif on SHA. Just over 500 blocks to go... We need a myr-groestl pool now!! Any takers?
|
|
|
|
SpecT
Member
Offline
Activity: 81
Merit: 10
|
|
July 22, 2015, 05:51:01 PM |
|
{ "blocks" : 915478, "currentblocksize" : 0, "currentblocktx" : 0, "pow_algo_id" : 0, "pow_algo" : "sha256d", "difficulty" : 2374001.05920456, "difficulty_sha256d" : 2374001.05920456, "difficulty_scrypt" : 41.30313079, "difficulty_groestl" : 5.44014465, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
Wow! 2.4 mil dif on SHA. Just over 500 blocks to go... We need a myr-groestl pool now!! Any takers?
why so high diff ? its only 1ths ...
|
|
|
|
TrinityCoin (OP)
|
|
July 22, 2015, 08:01:19 PM Last edit: July 22, 2015, 09:11:21 PM by TrinityCoin |
|
{ "blocks" : 915478, "currentblocksize" : 0, "currentblocktx" : 0, "pow_algo_id" : 0, "pow_algo" : "sha256d", "difficulty" : 2374001.05920456, "difficulty_sha256d" : 2374001.05920456, "difficulty_scrypt" : 41.30313079, "difficulty_groestl" : 5.44014465, "errors" : "", "generate" : false, "genproclimit" : -1, "hashespersec" : 0, "pooledtx" : 0, "testnet" : false }
Wow! 2.4 mil dif on SHA. Just over 500 blocks to go... We need a myr-groestl pool now!! Any takers?
why so high diff ? its only 1ths ... I think its due to the fact that myr-groestl has no pool or hashpower and the scrypt pool has no power atm either. Its supposed to load balance, so the lionshare of power is on sha256 atm so it goes up 3x faster We need a myr-groestl pool and Im gonna try to get some more power on the scrypt pool
|
|
|
|
TrinityCoin (OP)
|
|
July 22, 2015, 09:48:07 PM |
|
I have a bounty of 1000 TTY for a myr-groestl pool
|
|
|
|
CrazyCoins
Full Member
Offline
Activity: 182
Merit: 100
Just2CRAZY
|
|
July 25, 2015, 07:16:16 PM |
|
Hey TC. I talked to the man about your Groestl pool. He was offline but he normally replies within about 30 mins if he is not busy. Anyway, I can't find you but my baby finally synced up. Had to get the files from GG though. Yours wouldn't do it. She is mine now though...I have had my hands all over her trying to get her to work. Thought that would make ya happy though bro. Have a good one. I am sure I will probably see you somewhere anyway lol.
Hey who has the sha pool and can I get the address. Lets burn these blank blocks up and get goin. I just want to check the pool out. Probably all i could put in right now is about 4TH/s. I am pretty split up right now but ya never know. I might even rent some from NiceHash just for you. lol I just don't even care!!!!!!!!!!!!!
|
|
|
|
glen123
Legendary
Offline
Activity: 1028
Merit: 1000
|
|
July 25, 2015, 08:12:06 PM |
|
maybe the diff retarget is wrong ?
/trinityd getinfo { "version" : 1000001, "protocolversion" : 70001, "walletversion" : 60000, "balance" : 0.00000000, "blocks" : 915501, "timeoffset" : 0, "connections" : 3, "proxy" : "", "pow_algo_id" : 0, "pow_algo" : "sha256d", "difficulty" : 9292160.15685612, "difficulty_sha256d" : 9292160.15685612, "difficulty_scrypt" : 142.80573029, "difficulty_groestl" : 6.97206347, "testnet" : false, "keypoololdest" : 1437427739, "keypoolsize" : 101, "paytxfee" : 0.00000000, "errors" : ""
its ONLY goin upwards , nothing down .
main cpp
if(nHeight > 900000) nSubsidy = 0;
if(nHeight > 916000) nSubsidy = (1 + rand) * COIN;
return nSubsidy + nFees; }
static const int64 nTargetTimespan = 1 * 60; // 1 minutes (NUM_ALGOS * 30 seconds) readjusts difficulty static const int64 nTargetSpacing = 1 * 60; // 1 minutes (NUM_ALGOS * 30 seconds) between blocks static const int64 nInterval = 2; // retargets every 2 blocks
static const int64 nAveragingInterval = 1; // 1 block static const int64 nAveragingTargetTimespan = nAveragingInterval * nTargetSpacing; // 15 minutes
static const int64 nMaxAdjustDown = 10; // 10% adjustment down static const int64 nMaxAdjustUp = 11; // 11% adjustment up
static const int64 nTargetTimespanAdjDown = nTargetTimespan * (100 + nMaxAdjustDown) / 100;
----
// Maximum adjustment... bnResult *= (100 + nMaxAdjustDown); bnResult /= 100; // ... in best-case exactly adjustment times-normal target time nTime -= nTargetTimespanAdjDown; } if (bnResult > bnLimit) bnResult = bnLimit; return bnResult.GetCompact(); */ return Params().ProofOfWorkLimit(ALGO_SHA256D).GetCompact(); }
static const int64 nMinActualTimespan = nAveragingTargetTimespan * (100 - nMaxAdjustUp) / 100; static const int64 nMaxActualTimespan = nAveragingTargetTimespan * (100 + nMaxAdjustDown) / 100;
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock, int algo) { unsigned int nProofOfWorkLimit = Params().ProofOfWorkLimit(algo).GetCompact();
// Genesis block if (pindexLast == NULL) return nProofOfWorkLimit;
// Testnet if (TestNet()) { // Special difficulty rule for testnet: // If the new block's timestamp is more than 2* 10 minutes // then allow mining of a min-difficulty block. if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2) return nProofOfWorkLimit; else { // Return the last non-special-min-difficulty-rules-block const CBlockIndex* pindex = pindexLast; while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit) pindex = pindex->pprev; return pindex->nBits; } }
// find previous block with same algo const CBlockIndex* pindexPrev = GetLastBlockIndexForAlgo(pindexLast, algo);
// find first block in averaging interval // Go back by what we want to be nAveragingInterval blocks const CBlockIndex* pindexFirst = pindexPrev; for (int i = 0; pindexFirst && i < nAveragingInterval - 1; i++) { pindexFirst = pindexFirst->pprev; pindexFirst = GetLastBlockIndexForAlgo(pindexFirst, algo); } if (pindexFirst == NULL) return nProofOfWorkLimit; // not nAveragingInterval blocks of this algo available
// Limit adjustment step int64 nActualTimespan = pindexPrev->GetBlockTime() - pindexFirst->GetBlockTime(); printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan); if (nActualTimespan < nMinActualTimespan) nActualTimespan = nMinActualTimespan;
thats from the newer src on github
leaving tomorrow morning to vacation, if a new wallet will be out i can only fix it in about 1 week
|
|
|
|
CrazyCoins
Full Member
Offline
Activity: 182
Merit: 100
Just2CRAZY
|
|
July 26, 2015, 12:49:57 AM |
|
Oh...... not good. it synced in scrypt. When I switch to 0 or sha it is going to mess it all up. At least that is how it looks. Or am I just misreading something?? It not only messes the pool but everybody that mines sha is screwed at this point right??? I guess that is why I could not sync in sha but it would in scrypt.
|
|
|
|
TrinityCoin (OP)
|
|
July 26, 2015, 03:51:55 AM |
|
Oh...... not good. it synced in scrypt. When I switch to 0 or sha it is going to mess it all up. At least that is how it looks. Or am I just misreading something?? It not only messes the pool but everybody that mines sha is screwed at this point right??? I guess that is why I could not sync in sha but it would in scrypt.
No it will not mess anything up I have done it many many times with no issue.
|
|
|
|
TrinityCoin (OP)
|
|
July 26, 2015, 04:28:18 AM |
|
maybe the diff retarget is wrong ?
/trinityd getinfo { "version" : 1000001, "protocolversion" : 70001, "walletversion" : 60000, "balance" : 0.00000000, "blocks" : 915501, "timeoffset" : 0, "connections" : 3, "proxy" : "", "pow_algo_id" : 0, "pow_algo" : "sha256d", "difficulty" : 9292160.15685612, "difficulty_sha256d" : 9292160.15685612, "difficulty_scrypt" : 142.80573029, "difficulty_groestl" : 6.97206347, "testnet" : false, "keypoololdest" : 1437427739, "keypoolsize" : 101, "paytxfee" : 0.00000000, "errors" : ""
its ONLY goin upwards , nothing down .
main cpp
if(nHeight > 900000) nSubsidy = 0;
if(nHeight > 916000) nSubsidy = (1 + rand) * COIN;
return nSubsidy + nFees; }
static const int64 nTargetTimespan = 1 * 60; // 1 minutes (NUM_ALGOS * 30 seconds) readjusts difficulty static const int64 nTargetSpacing = 1 * 60; // 1 minutes (NUM_ALGOS * 30 seconds) between blocks static const int64 nInterval = 2; // retargets every 2 blocks
static const int64 nAveragingInterval = 1; // 1 block static const int64 nAveragingTargetTimespan = nAveragingInterval * nTargetSpacing; // 15 minutes
static const int64 nMaxAdjustDown = 10; // 10% adjustment down static const int64 nMaxAdjustUp = 11; // 11% adjustment up
static const int64 nTargetTimespanAdjDown = nTargetTimespan * (100 + nMaxAdjustDown) / 100;
----
// Maximum adjustment... bnResult *= (100 + nMaxAdjustDown); bnResult /= 100; // ... in best-case exactly adjustment times-normal target time nTime -= nTargetTimespanAdjDown; } if (bnResult > bnLimit) bnResult = bnLimit; return bnResult.GetCompact(); */ return Params().ProofOfWorkLimit(ALGO_SHA256D).GetCompact(); }
static const int64 nMinActualTimespan = nAveragingTargetTimespan * (100 - nMaxAdjustUp) / 100; static const int64 nMaxActualTimespan = nAveragingTargetTimespan * (100 + nMaxAdjustDown) / 100;
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlockHeader *pblock, int algo) { unsigned int nProofOfWorkLimit = Params().ProofOfWorkLimit(algo).GetCompact();
// Genesis block if (pindexLast == NULL) return nProofOfWorkLimit;
// Testnet if (TestNet()) { // Special difficulty rule for testnet: // If the new block's timestamp is more than 2* 10 minutes // then allow mining of a min-difficulty block. if (pblock->nTime > pindexLast->nTime + nTargetSpacing*2) return nProofOfWorkLimit; else { // Return the last non-special-min-difficulty-rules-block const CBlockIndex* pindex = pindexLast; while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit) pindex = pindex->pprev; return pindex->nBits; } }
// find previous block with same algo const CBlockIndex* pindexPrev = GetLastBlockIndexForAlgo(pindexLast, algo);
// find first block in averaging interval // Go back by what we want to be nAveragingInterval blocks const CBlockIndex* pindexFirst = pindexPrev; for (int i = 0; pindexFirst && i < nAveragingInterval - 1; i++) { pindexFirst = pindexFirst->pprev; pindexFirst = GetLastBlockIndexForAlgo(pindexFirst, algo); } if (pindexFirst == NULL) return nProofOfWorkLimit; // not nAveragingInterval blocks of this algo available
// Limit adjustment step int64 nActualTimespan = pindexPrev->GetBlockTime() - pindexFirst->GetBlockTime(); printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan); if (nActualTimespan < nMinActualTimespan) nActualTimespan = nMinActualTimespan;
thats from the newer src on github
leaving tomorrow morning to vacation, if a new wallet will be out i can only fix it in about 1 week
Okay I will analyze the situation and if need be new wallet will be released in 1 week.
|
|
|
|
TrinityCoin (OP)
|
|
August 02, 2015, 12:57:50 AM |
|
Still working on a fix.. just working a ton lately.
|
|
|
|
glen123
Legendary
Offline
Activity: 1028
Merit: 1000
|
|
August 03, 2015, 05:44:37 PM |
|
|
|
|
|
glen123
Legendary
Offline
Activity: 1028
Merit: 1000
|
|
August 09, 2015, 09:21:58 PM |
|
knock knock , mcfly are u there ?
|
|
|
|
SpecT
Member
Offline
Activity: 81
Merit: 10
|
|
August 19, 2015, 07:27:39 PM |
|
any news ?
|
|
|
|
glen123
Legendary
Offline
Activity: 1028
Merit: 1000
|
|
August 30, 2015, 07:59:18 PM |
|
5 days left and i shutdown Pool
Dev isnt respond
|
|
|
|
TrinityCoin (OP)
|
|
September 08, 2015, 08:34:36 PM |
|
https://github.com/5mil/Trinity has been updated. Cryptopia has been notified of new code. I will work on compiles tonight, but this should fix the difficulty issue. Sorry for the delay folks.
|
|
|
|
TrinityCoin (OP)
|
|
September 09, 2015, 04:26:42 AM |
|
The new wallet is being compiled right now.. I will post it as soon as it is done. Note: This will be a mandatory hardfork.
|
|
|
|
TrinityCoin (OP)
|
|
September 09, 2015, 06:06:47 AM Last edit: September 09, 2015, 01:48:28 PM by TrinityCoin |
|
|
|
|
|
diks
Legendary
Offline
Activity: 2632
Merit: 1450
|
|
September 09, 2015, 09:40:40 AM |
|
http://dropcanvas.com/download/alertCap?l=1Daily bandwidth cap reached for this canvas This canvas belongs to a free account which has a 1gb daily data limit and that has been reached. You may try again tomorrow, or if you are a paid member you can log in to retrieve it and skip this limitation. At Dropcanvas, we love you - but without these caps in place there would be no dropcanvas anymore. Thanks for understanding! --------------------------- http://ge.tt/notification/3oWiDcN2/remoteThis file is not available, because the upload was interrupted. You will not be able to download the file. Contact the owner if you need the file.
|
|
|
|
TrinityCoin (OP)
|
|
September 09, 2015, 01:16:31 PM |
|
My bad, ill upload another one.
|
|
|
|
|
|