Bitcoin Forum
May 06, 2024, 12:00:07 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »  All
  Print  
Author Topic: [ANN] TAJCOIN- $TAJ | Blake2s POW/POS | NO premine | NO ICO | OPEN LAUNCH|  (Read 53587 times)
Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 01:29:03 PM
 #61

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?

⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
If you want to be a moderator, report many posts with accuracy. You will be noticed.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714953607
Hero Member
*
Offline Offline

Posts: 1714953607

View Profile Personal Message (Offline)

Ignore
1714953607
Reply with quote  #2

1714953607
Report to moderator
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 10, 2016, 01:41:06 PM
 #62

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

Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 01:48:49 PM
 #63

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"));


⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
Lazarus2016
Member
**
Offline Offline

Activity: 98
Merit: 10


View Profile
July 10, 2016, 01:50:35 PM
 #64

What is unique here?
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 10, 2016, 02:26:44 PM
 #65

Looks like things just started rolling again. Atleast we have block 165 now

user769
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
July 10, 2016, 02:56:35 PM
 #66

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...
Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 03:56:27 PM
 #67

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.

⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
Kazadar
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
July 10, 2016, 04:54:05 PM
 #68

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.

Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 04:55:34 PM
 #69

Now it works:

19:49:06: *** ACCEPTED TAJCoin 214 (diff 158.381) by <IP> (id: 35)
19:49:06: submit <IP> (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.


⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
staysecure (OP)
Hero Member
*****
Offline Offline

Activity: 1472
Merit: 505


We are cryptocurrency


View Profile WWW
July 10, 2016, 06:02:55 PM
 #70

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."






Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 07:05:36 PM
 #71

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.

⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
Lafu
Legendary
*
Offline Offline

Activity: 2968
Merit: 3045



View Profile
July 10, 2016, 07:16:59 PM
 #72

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.


thx received

Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 07:20:08 PM
 #73

Glad to hear it worked, makes me trust more in the systems I'm building and running.

⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
kondiomir
Legendary
*
Offline Offline

Activity: 1568
Merit: 1000


Twitter @Acimirov


View Profile
July 10, 2016, 08:38:45 PM
 #74

There is something wrong with the blocktime... IMO

According the blockexplorer they are too slow..
j7777
Member
**
Offline Offline

Activity: 114
Merit: 10


View Profile
July 10, 2016, 09:08:45 PM
 #75

No source no working Links. Welcome to cryptocurrency world

https://github.com/Taj-Coin/tajcoin

Bawaler
Member
**
Offline Offline

Activity: 87
Merit: 10


View Profile WWW
July 10, 2016, 09:34:43 PM
 #76

There is something wrong with the blocktime... IMO

According the blockexplorer they are too slow..


I'm unsure about is this related, but what I found out the difficulty went so high for PoW at the very start that GPUs found most of the PoW blocks. Likely half of the found blocks are PoS mined if looking into the explorer.
I can check is the wallet having timeoffset, because its been up and running from very start, restarted it once.
If there is time drift, I have to shut down the stratum for the time when I restart the wallet and wait it to synchronize fully before firing stratum up to make sure there won't happen chain forking.

⌘ This ain't just a symbol of a PoI ⌘
I recommend Yourserver.se VPS for hosting, pay with BTC.
bitbeanpool
Member
**
Offline Offline

Activity: 74
Merit: 100


View Profile
July 11, 2016, 03:15:29 AM
 #77

TAJ faucet now live at https://poswallet.com/faucet.php . Staking wallet also online.

Dev - please help fill the faucet with initial donation.  Address is TM5vDrMUPEMwSK5K1Y1Nw9drvnxnELGWmM
won99
Hero Member
*****
Offline Offline

Activity: 672
Merit: 501



View Profile WWW
July 11, 2016, 03:22:01 AM
 #78

where wallet online Tajoshi..?

TAYLOR
Crypto Trading for Everyone
----
----
----
------
------
------
------
------
------
------
------
----
----
----
----
------
------
------
------
------
------
------
------
----
----
----
----
------
------
------
------
------
------
------
------
----
[]
staysecure (OP)
Hero Member
*****
Offline Offline

Activity: 1472
Merit: 505


We are cryptocurrency


View Profile WWW
July 11, 2016, 08:02:11 AM
 #79

TAJ faucet now live at https://poswallet.com/faucet.php . Staking wallet also online.

Dev - please help fill the faucet with initial donation.  Address is TM5vDrMUPEMwSK5K1Y1Nw9drvnxnELGWmM

Great stuff. 100 TAJ sent to faucet.  PoSWallet.com looks very interesting. I research crypto a lot and i havent stumbled on this yet. Good job!

staysecure (OP)
Hero Member
*****
Offline Offline

Activity: 1472
Merit: 505


We are cryptocurrency


View Profile WWW
July 11, 2016, 08:03:15 AM
 #80

where wallet online Tajoshi..?

Hi won99 you can grab QT wallet here https://github.com/Taj-Coin/tajcoin/releases (Win and Linux at the moment).

Have a great day.

Pages: « 1 2 3 [4] 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!