Pages:
Author

Topic: [ANN] [TTY] Trinity | SHA + Scrypt + Groestl [Exchanges Now Available!] - page 4. (Read 71745 times)

sr. member
Activity: 264
Merit: 250
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.
full member
Activity: 182
Merit: 100
Just2CRAZY
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.
legendary
Activity: 1028
Merit: 1000
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



full member
Activity: 182
Merit: 100
Just2CRAZY
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!!!!!!!!!!!!!
sr. member
Activity: 264
Merit: 250
I have a bounty of 1000 TTY for a myr-groestl pool
sr. member
Activity: 264
Merit: 250
{
"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
member
Activity: 81
Merit: 10
{
"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 ...
sr. member
Activity: 264
Merit: 250
{
"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?
sr. member
Activity: 264
Merit: 250
addnode=77.239.40.238

try this  Cool

Thanks for mining man!! You got us up to 1 million dif almost! W00T!
sr. member
Activity: 264
Merit: 250


{
"blocks" : 915471,
"currentblocksize" : 0,
"currentblocktx" : 0,
"pow_algo_id" : 0,
"pow_algo" : "sha256d",
"difficulty" : 996209.80989020,
"difficulty_sha256d" : 996209.80989020,
"difficulty_scrypt" : 41.30313079,
"difficulty_groestl" : 5.44014465,
"errors" : "",
"generate" : false,
"genproclimit" : -1,
"hashespersec" : 0,
"pooledtx" : 0,
"testnet" : false
}

We are getting somewhere now! Thanks for throwing hash at the pools guys! PM me with wallet addresses if you are mining.
legendary
Activity: 1028
Merit: 1000
slowly going upwards


"version" : 1000001,
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 915441,
"timeoffset" : 0,
"connections" : 4,
"proxy" : "",
"pow_algo_id" : 0,
"pow_algo" : "sha256d",
"difficulty" : 44815.58678979,
"difficulty_sha256d" : 44815.58678979,
"difficulty_scrypt" : 41.30313079,
"difficulty_groestl" : 2.92572423,
"testnet" : false,
"keypoololdest" : 1437349396,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"errors" : ""
}

diff rising.



sr. member
Activity: 264
Merit: 250
Works Smiley

Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    25    af45c591...5482efe0    07/21/2015 00:05:20
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    24    76b66bb3...f6c8cfc7    07/21/2015 00:05:21
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    23    df48bd88...ba1f9494    07/21/2015 00:05:21
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    22    5f95fd23...5cd5972e    07/21/2015 00:05:22
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    21    7794de54...1badf7f8    07/21/2015 00:05:23
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    20    339b58b4...dcc22a0b    07/21/2015 00:05:24
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    19    d0acbe34...8d590f32    07/21/2015 00:05:25
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    18    e47182cc...0ce611ca    07/21/2015 00:05:25
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    17    14733d93...15c81419    07/21/2015 00:05:26
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    

Pool ready :


http://gcpool.eu/trinity/public/

SHA256

will check tomorrow morning if pow kicked in on block 91600

est. 580 blocks to go





Thanks a lot for getting this going! Send me an address in the PM and I will send you a bounty of some sort. We are moving along nicely now!
legendary
Activity: 1028
Merit: 1000
Works Smiley

Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    25    af45c591...5482efe0    07/21/2015 00:05:20
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    24    76b66bb3...f6c8cfc7    07/21/2015 00:05:21
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    23    df48bd88...ba1f9494    07/21/2015 00:05:21
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    22    5f95fd23...5cd5972e    07/21/2015 00:05:22
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    21    7794de54...1badf7f8    07/21/2015 00:05:23
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    20    339b58b4...dcc22a0b    07/21/2015 00:05:24
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    19    d0acbe34...8d590f32    07/21/2015 00:05:25
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    18    e47182cc...0ce611ca    07/21/2015 00:05:25
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    0.00000000000000000000    17    14733d93...15c81419    07/21/2015 00:05:26
Default    DTNgDxJygp64JUSiG1KBnJT6B378fZC4n2    Immature    

Pool ready :


http://gcpool.eu/trinity/public/

SHA256

will check tomorrow morning if pow kicked in on block 91600

est. 580 blocks to go



sr. member
Activity: 264
Merit: 250
If people are having trouble syncing, you can try this. I have used it successfully myself after syncing it on my pc and exporting these block files. This is the raw blocks folder.
Download blocks: https://drive.google.com/file/d/0B5ZlAhvy0lhsakJQNEs3b3BKX3M/view?usp=sharing
1. Be sure to backup wallet.dat first!!! DO NOT SKIP!
2. Delete everything from your data folder except for trinity.conf and wallet.dat
3. Unzip this folder into your data folder. (Which is usually something like C:\Users\USER\AppData\Roaming\Trinity)
4. Be sure that these addnodes are in your Trinity.conf file:
addnode=89.70.100.251
addnode=77.239.40.238
addnode=98.193.2.154
5. Open your Trinity wallet and it should sync. It may take a little while to scan the blocks but it worked for me in about 15 minutes the wallet was up, connected, and synced.
sr. member
Activity: 264
Merit: 250
sr. member
Activity: 264
Merit: 250
i am willing to help, but no sync Sad

with new src and old chains =

gcpool-VirtualBox:~/trinity/src# ./trinityd getinfo
{
    "version" : 1000001,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 98814.70676996,
    "blocks" : 864970,
    "timeoffset" : 0,
    "connections" : 1,
    "proxy" : "",
    "pow_algo_id" : 0,
    "pow_algo" : "sha256d",
    "difficulty" : 2026.83781529,
    "difficulty_sha256d" : 2026.83781529,
    "difficulty_scrypt" : 0.00466525,
    "difficulty_groestl" : 1.06332749,
    "testnet" : false,
    "keypoololdest" : 1405443202,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""


root@gcpool-VirtualBox:~/trinity/src# ./trinityd getpeerinfo
[
    {
        "addr" : "24.92.50.59:62621",
        "services" : "00000001",
        "lastsend" : 1437351859,
        "lastrecv" : 1437351860,
        "bytessent" : 229,
        "bytesrecv" : 205,
        "conntime" : 1437351858,
        "version" : 70001,
        "subver" : "/TTYDEV:1.0.0.1/",
        "inbound" : false,
        "startingheight" : 86,
        "banscore" : 0


addnode=77.239.40.238:62621
addnode=98.193.2.154:62621
addnode=89.70.100.251:62621
addnode=24.92.50.59:62621

and others


not moving




with NEW win Wallet it shows :


02:28:45

getinfo


02:28:45

{
"version" : 1000001,
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 86,
"timeoffset" : 5,
"connections" : 4,
"proxy" : "",
"pow_algo_id" : 0,
"pow_algo" : "sha256d",
"difficulty" : 0.01009143,
"difficulty_sha256d" : 0.01009143,
"difficulty_scrypt" : 0.00024414,
"difficulty_groestl" : 0.22430741,
"testnet" : false,
"keypoololdest" : 1437349396,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"errors" : ""
}


BLOCK 86 and 11h behind HuhHuhHuh?



cant be really


Yeah there are some issues with syncing I am trying to work out now. I think we may need to recompile the Windows qt
sr. member
Activity: 264
Merit: 250
legendary
Activity: 1028
Merit: 1000
i am willing to help, but no sync Sad

with new src and old chains =

gcpool-VirtualBox:~/trinity/src# ./trinityd getinfo
{
    "version" : 1000001,
    "protocolversion" : 70001,
    "walletversion" : 60000,
    "balance" : 98814.70676996,
    "blocks" : 864970,
    "timeoffset" : 0,
    "connections" : 1,
    "proxy" : "",
    "pow_algo_id" : 0,
    "pow_algo" : "sha256d",
    "difficulty" : 2026.83781529,
    "difficulty_sha256d" : 2026.83781529,
    "difficulty_scrypt" : 0.00466525,
    "difficulty_groestl" : 1.06332749,
    "testnet" : false,
    "keypoololdest" : 1405443202,
    "keypoolsize" : 101,
    "paytxfee" : 0.00000000,
    "errors" : ""


root@gcpool-VirtualBox:~/trinity/src# ./trinityd getpeerinfo
[
    {
        "addr" : "24.92.50.59:62621",
        "services" : "00000001",
        "lastsend" : 1437351859,
        "lastrecv" : 1437351860,
        "bytessent" : 229,
        "bytesrecv" : 205,
        "conntime" : 1437351858,
        "version" : 70001,
        "subver" : "/TTYDEV:1.0.0.1/",
        "inbound" : false,
        "startingheight" : 86,
        "banscore" : 0


addnode=77.239.40.238:62621
addnode=98.193.2.154:62621
addnode=89.70.100.251:62621
addnode=24.92.50.59:62621

and others


not moving




with NEW win Wallet it shows :


02:28:45

getinfo


02:28:45

{
"version" : 1000001,
"protocolversion" : 70001,
"walletversion" : 60000,
"balance" : 0.00000000,
"blocks" : 86,
"timeoffset" : 5,
"connections" : 4,
"proxy" : "",
"pow_algo_id" : 0,
"pow_algo" : "sha256d",
"difficulty" : 0.01009143,
"difficulty_sha256d" : 0.01009143,
"difficulty_scrypt" : 0.00024414,
"difficulty_groestl" : 0.22430741,
"testnet" : false,
"keypoololdest" : 1437349396,
"keypoolsize" : 101,
"paytxfee" : 0.00000000,
"errors" : ""
}


BLOCK 86 and 11h behind HuhHuhHuh?



cant be really
sr. member
Activity: 264
Merit: 250
Current block?

I am showing 3 hours behind on block 915,367

I am synced at that block. I think we just havent hit a block in 3 hours. We need more power on sha256 and groestl

https://bitcointalksearch.org/topic/ann-sph-sgminer-multi-coin-multi-algorithm-gpu-miner-added-marucoin-475795 <-- myr-groestl gpu miner
legendary
Activity: 1386
Merit: 1000
Current block?

I am showing 3 hours behind on block 915,367
Pages:
Jump to: