Pages:
Author

Topic: [ANN] TAJCOIN- Blake2s POW/POS - GenesisBlock 10.7.2016 at 8:34 AM (GMT+1) - page 22. (Read 53620 times)

member
Activity: 87
Merit: 10
I also appreciate all the help I got with this. Always want to learn new about mining and our lovely core wallet.
Cryptocurrencies are the future.

http://louhimo.club/explorer/TAJ?txid=a8cc4ae955e89c21204e9a2e131ddbe4a50f7e234d8f49bdb95351bd0177471a
Here is the first payout from pool.
hero member
Activity: 1472
Merit: 505
We are cryptocurrency
Hi all. Just came back home. I see there where some issues with block 165 and the "block timestamp too far in the future".

Very happy you guys solved it by restarting tajcoind. Respect.

Amazing to see so many people from around the globe getting involved.

Nodes poping up from Slovenia-Indonesia-United States of America-Sweden-Ukraine-Bulgaria-Poland-Netherlands-United Kingdom-Denmark-Portugal.

With all the shit that exist on this earth to seperate and divide us it gives me great hope for humanity seeing that one tiny project like TajCoin connecting people together and seeing collective resolutions
of small technical issues like the one with block165.

Its a real honour to be part of the cryptocurrency realm and being in presence of likeminded individuals all sharing the same ideology that will in the future reshape a lot of problems humanity is facing today.

I am gonna finish this with a quote from John McMcafee  "Cryptocurrency is coming. Its like the Pandoras box that has been opened. You will never get that idea back into the box."





member
Activity: 87
Merit: 10
Now it works:

19:49:06: *** ACCEPTED TAJCoin 214 (diff 158.381) by (id: 35)
19:49:06: submit (uid 35) 239, 04000000, 57827c65, a035ccd0, 158.000/0.840
19:49:06: *** CONFIRMED 214 : 00000000019dc81df5c44da20bd5dbcae1c65f6f7c5dfa1442c448cfe01e540f

One block matured this far, all the rest is maturing. Waiting for a first payout to happen.

hero member
Activity: 658
Merit: 500
Thanks for a explanation. Seems pool have accepted one block after I posted the earlier message, 8 confirmations left...let's see what happens when it's confirmed.
It looks like it does confirm your blocks now.
member
Activity: 87
Merit: 10
Thanks for a explanation. Seems pool have accepted one block after I posted the earlier message, 8 confirmations left...let's see what happens when it's confirmed.
newbie
Activity: 2
Merit: 0
Solo mining.

I just keep getting this

Code:
ERROR: AcceptBlock() : coinbase timestamp is too early
ERROR: ProcessBlock() : AcceptBlock FAILED
ERROR: CheckWork() : ProcessBlock, block not accepted

hmm, found this kind of information related to the issue:
Code:

    // Check coinbase timestamp
    if (GetBlockTime() > (int64)vtx[0].nTime + nMaxClockDrift)
        return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));

    // Check coinstake timestamp
    if (IsProofOfStake() && !CheckCoinStakeTimestamp(GetBlockTime(), (int64)vtx[1].nTime))
        return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));

    // Check timestamp against prev
    if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || GetBlockTime() + nMaxClockDrift < pindexPrev->GetBlockTime())
        return error("AcceptBlock() : block's timestamp is too early");

    // Check timestamp
    if (GetBlockTime() > GetAdjustedTime() + GetMaxClockDrift(nHeight))
        return error("AcceptBlock() : block timestamp too far in the future");

    // Check coinbase timestamp
    if (GetBlockTime() > (int64)vtx[0].nTime + GetMaxClockDrift(nHeight))
        return DoS(50, error("AcceptBlock() : coinbase timestamp is too early"));


I think this error means that the future drift time limit is violated.

main.h line 58

Code:
inline int64_t FutureDrift(int64_t nTime, int nHeight) { return nTime + 30 * 60; }

If you restart your daemon if should "restart" the time and the next block should be valid.

This happened because there was no block found for such a long time, but since the chain is rolling along again it should not be a problem anymore I think...
hero member
Activity: 658
Merit: 500
Looks like things just started rolling again. Atleast we have block 165 now
member
Activity: 98
Merit: 10
member
Activity: 87
Merit: 10
Solo mining.

I just keep getting this

Code:
ERROR: AcceptBlock() : coinbase timestamp is too early
ERROR: ProcessBlock() : AcceptBlock FAILED
ERROR: CheckWork() : ProcessBlock, block not accepted

hmm, found this kind of information related to the issue:
Code:

    // Check coinbase timestamp
    if (GetBlockTime() > (int64)vtx[0].nTime + nMaxClockDrift)
        return DoS(50, error("CheckBlock() : coinbase timestamp is too early"));

    // Check coinstake timestamp
    if (IsProofOfStake() && !CheckCoinStakeTimestamp(GetBlockTime(), (int64)vtx[1].nTime))
        return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));

    // Check timestamp against prev
    if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || GetBlockTime() + nMaxClockDrift < pindexPrev->GetBlockTime())
        return error("AcceptBlock() : block's timestamp is too early");

    // Check timestamp
    if (GetBlockTime() > GetAdjustedTime() + GetMaxClockDrift(nHeight))
        return error("AcceptBlock() : block timestamp too far in the future");

    // Check coinbase timestamp
    if (GetBlockTime() > (int64)vtx[0].nTime + GetMaxClockDrift(nHeight))
        return DoS(50, error("AcceptBlock() : coinbase timestamp is too early"));

hero member
Activity: 658
Merit: 500
https://chainz.cryptoid.info/taj/
http://louhimo.club/explorer/TAJ

The chain have been stuck for some time now, looking for a solution of the block 165. Hope it's just about solving the block.

I have found 6 or 7 so far but they keep failing.

Are you solo mining through the wallet or mining at the pool?

Have anyone looked into the epoch unix timestamp of the genesis? Is everything correct?
Solo mining.

I just keep getting this

Code:
ERROR: AcceptBlock() : coinbase timestamp is too early
ERROR: ProcessBlock() : AcceptBlock FAILED
ERROR: CheckWork() : ProcessBlock, block not accepted
member
Activity: 87
Merit: 10
https://chainz.cryptoid.info/taj/
http://louhimo.club/explorer/TAJ

The chain have been stuck for some time now, looking for a solution of the block 165. Hope it's just about solving the block.

I have found 6 or 7 so far but they keep failing.

Are you solo mining through the wallet or mining at the pool?

Have anyone looked into the epoch unix timestamp of the genesis? Is everything correct?
hero member
Activity: 658
Merit: 500
https://chainz.cryptoid.info/taj/
http://louhimo.club/explorer/TAJ

The chain have been stuck for some time now, looking for a solution of the block 165. Hope it's just about solving the block.

I have found 6 or 7 so far but they keep failing.
member
Activity: 87
Merit: 10
https://chainz.cryptoid.info/taj/
http://louhimo.club/explorer/TAJ

The chain have been stuck for some time now, looking for a solution of the block 165. Hope it's just about solving the block.
hero member
Activity: 658
Merit: 500
Looking at the log I keep getting this whenever i find a blok

Code:
ERROR: AcceptBlock() : coinbase timestamp is too early
ERROR: ProcessBlock() : AcceptBlock FAILED
ERROR: CheckWork() : ProcessBlock, block not accepted
sr. member
Activity: 504
Merit: 250
wallet dont sync

Don't seem to be getting blocks from mining either, lots of shares, and the pool shows everything is fine. I also had the majority of the hashrate. Nothing, though.
legendary
Activity: 2996
Merit: 3114
sr. member
Activity: 504
Merit: 250
Anyone care to share their .bat configuration for gpu mining?

Note that I have no idea what I'm doing...

ccminer-blake2s-x64 -i 25,24,28 -a blake2s -o stratum+tcp://louhimo.club:8007 -u YOUR_ADDRESS -p c=TAJ,d=0.25 --show-diff
pause

Where YOUR_ADDRESS is obviously your address.
hero member
Activity: 658
Merit: 500
Nodes for wallet ?
These should work according to the explorer

addnode=115.178.236.12
addnode=115.178.236.26
addnode=115.178.254.84
addnode=135.84.223.129
addnode=172.248.182.97
addnode=185.86.148.224
addnode=193.164.140.158
addnode=193.192.37.135
addnode=2.216.159.177
addnode=37.157.179.59
addnode=5.83.18.254
addnode=62.65.126.22
addnode=71.206.252.109
addnode=81.161.137.189
addnode=83.10.49.41
addnode=83.27.230.6
addnode=85.11.137.70
addnode=89.142.46.209
addnode=89.212.118.169
addnode=89.212.160.165
addnode=89.212.246.67
addnode=93.103.42.245
legendary
Activity: 2996
Merit: 3114
hero member
Activity: 658
Merit: 500
block 164 , what now?
stuck or too high diff

Diff. I will have one or two nvidia card setup later on during the day but i am shure some here will come along before that and point some CUDA power to the pool Smiley
youre right, this algo nvidia better than amd
Yes 2.5 GHs isnt that much if you are running nvidia cards. I got one 970 and its giving me around 800 MH avg.
Pages:
Jump to: