Bitcoin Forum
July 08, 2024, 10:30:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 »
141  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 05, 2013, 02:41:25 AM
Version 1.6 Download:
windows setup exe: http://sdrv.ms/12pywCy
.7z file: http://sdrv.ms/12pyESx

Version 1.6
- Add checkpoints
- Fix error of block 7887
- add more chinese translation
- fix some little bugs

ANN Thread: https://bitcointalk.org/index.php?topic=250272
142  Alternate cryptocurrencies / Altcoin Discussion / [ANN][CMC] Version 1.6 Released|Please Update|More Checkpoints|more bug fix on: July 05, 2013, 02:40:30 AM
Version 1.6 Download:
windows setup exe: http://sdrv.ms/12pywCy
.7z file: http://sdrv.ms/12pyESx

Version 1.6
- Add checkpoints
- Fix error of block 7887
- add more chinese translation
- fix some little bugs
143  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 05, 2013, 01:08:31 AM
It has already start?
Yes.


BTW, I received a donation of 100 CMC, but don't know who send it to me, please left your name, and the text is:
Transaction comment:
text:You're the best efforts to develop
144  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 04, 2013, 12:47:49 PM
Need donations, we will give the donations to first pool creator.

So we start a donation for CMC pool, please help us, the donation address is: C9F6XmSESpKJVRjc2DkRZh1w6Ch53abRxL.
The bounty for First CMC pool (p2pool or pushpool) will be 200 CMC, please donate.

Please give me your Bitcointalk username while donate CMC to us, we will list it here.
145  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 04, 2013, 12:41:08 PM
Need donations, we will give the donations to first pool creator.

So we start a donation for CMC pool, please help us, the donation address is: C9F6XmSESpKJVRjc2DkRZh1w6Ch53abRxL.
The bounty for First CMC pool (p2pool or pushpool) will be 200 CMC, please donate.
146  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 09:24:21 AM
I'm not a dev actually but I sent 50 as a thank you. I just like supporting coins that try new things and aren't premined.

I send 100, I don't have many CMC, I want to buy some CMC from this community, who want to sell CMC please contact with me.
147  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 08:44:42 AM
Great thanks to you, I want to buy the bad blocks from you and I really appreciate your great help.

I didn't mine any 'bad' blocks; there was only one which was on the end of the chain.

You're welcome Smiley, it wasn't a huge deal though, and I didn't actually figure out the problem, just work around it.

If you'd like to send me some CMC you can here: C72cU8HH6ryHSScDqMymtYYxu5kEWjN9bx

Great, can you share how did you patch the chain? How the bad block could be attached to the chain?
I believe he just updated the code as outlined above and started mining using a version based on that code, no?

This is correct. The patch itself was:
Code:
if (GetHash() == uint256("0x000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205"))
    return error("CheckBlock() : hash == 000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205");

Basically it would just fail if you tried to add block 0x000000082f31f... to the main chain, allowing me to mine from the previous block and create an alternate chain which took precedence when it became longer. Then the rest of the network took over and there were like 200 blocks in 2 minutes (the difficulty was low because it recalcs for every block).

JDDev and cosmoscoin, not sure if either or both of you are developing this, but your block target and retarget time are low enough that you might get problems. I'm not certain that is what allowed the 7886 block; the PoS aspect might have had quite a bit to do with it. In any case, there's evidently a bug that needs to be worked out.

The scheme of CMC is retarget every block, as you see the block target and retarget time is too low, I don't know how to figure this out.
It seems that NVC, Bitgem and bottlecaps don't have this problem, so I really don't know why.
148  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 08:40:33 AM
Great thanks to you, I want to buy the bad blocks from you and I really appreciate your great help.

I didn't mine any 'bad' blocks; there was only one which was on the end of the chain.

You're welcome Smiley, it wasn't a huge deal though, and I didn't actually figure out the problem, just work around it.

If you'd like to send me some CMC you can here: C72cU8HH6ryHSScDqMymtYYxu5kEWjN9bx

Great, can you share how did you patch the chain? How the bad block could be attached to the chain?
I believe he just updated the code as outlined above and started mining using a version based on that code, no?

This is correct. The patch itself was:
Code:
if (GetHash() == uint256("0x000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205"))
    return error("CheckBlock() : hash == 000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205");

Basically it would just fail if you tried to add block 0x000000082f31f... to the main chain, allowing me to mine from the previous block and create an alternate chain which took precedence when it became longer. Then the rest of the network took over and there were like 200 blocks in 2 minutes (the difficulty was low because it recalcs for every block).

JDDev and cosmoscoin, not sure if either or both of you are developing this, but your block target and retarget time are low enough that you might get problems. I'm not certain that is what allowed the 7886 block; the PoS aspect might have had quite a bit to do with it. In any case, there's evidently a bug that needs to be worked out.

Because CMC doesn't have premine, and I don't have many CMC, I can send you 100 CMC, thanks again.
149  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 08:38:50 AM
CMC implements quite a few innovations, first PoS coin with transaction comments. Also it has no premine
lol, thats all? Really.....  wait, yup, just as I thought, this post is full of noobs...

 Have fun with your novelty cosmo coin kids. Youll learn someday.

I respect your opinion, but we are working on CMC and try to make it a good coin for the community, although CMC doesn't have many innovations, but it's the most functional coin in the community right now.
150  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 04, 2013, 08:08:59 AM
Great thanks to XertroV(https://bitcointalk.org/index.php?action=profile;u=37740), he solved the bad block 7887.
151  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 07:55:20 AM
CMC implements quite a few innovations, first PoS coin with transaction comments. Also it has no premine

Correct answer.
152  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 07:53:57 AM
Things seem to be working okay at this point. Thanks so much. If you post your CMC address, I'd love to send you some CMC.

Great thanks to JDDev, I can send XertroV some CMC too, I mined some CMC, XertroV, please give me your CMC address and I want to buy the bad blocks from you.
153  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 07:48:34 AM
Looks like your target reduced massively at block 7887, from 00000008359d00... to 000000004c847400...; ie 7 zeros to 8 zeros at the start.

Was a retarget intended for block 7887? And can you post the raw block for 7886; there might be something hiding there.

Edit:
nBits for the block you're trying to mine are nBits=1ccc8474
nBits for the previous blocks were nBits=1d08359d

Sure these are correct? This error message indicates they are not: ERROR: CheckProofOfWork() : nBits below minimum work
1ccc8474 < 1d08359d

Edit again:

Ignore most of the above, didn't realise CMC was based on PPC. There are retargets every block, so changing nBits is expected. The reason these are so drastically different is because of the algorithm used to calculate them and the leniency on block timestamps.


Great thanks to you, I want to buy the bad blocks from you and I really appreciate your great help.
154  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 04, 2013, 12:58:50 AM
Seems like this coin is dead after the last difficulty jump, not getting any confirmations and my mined shares are not maturing.

The block 7887 can't be find out, the mining process has been stucked, can someone help me to find out why?
155  Alternate cryptocurrencies / Altcoin Discussion / Re: Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 12:56:37 AM
Need help from bitcoin community, it's really strange, I never met this before.
156  Alternate cryptocurrencies / Altcoin Discussion / Please help to find out why can't mining block 7887 of CosmosCoin(CMC) on: July 04, 2013, 12:55:57 AM
Hello everyone,

Right now the mining process of CMC can't go on, it has been stucked in mining block 7887(7886 has been mined), and the CMC network has mining this block for more than 20 hours, but still can't get this block, following is the debug message, can someone help me to find out why?

If possible, please help me to check the soucecode.

Code:
7884
CosmoscoinMiner:
new block found 
  hash: 00000004a11a5a3080247c1c1c795d96e7330179d185475eaee48ed698604040 
target: 00000008359d0000000000000000000000000000000000000000000000000000
CBlock(hash=00000004a11a5a3080247c1c1c795d96e7330179d185475eaee48ed698604040, ver=4, hashPrevBlock=00000004a6598bf7e9db875c15d18ac0bb82ec6098dead3b387485bd59fbd576, hashMerkleRoot=09d9d6359ba0c1620253b2bfe63c0e1841294d6a502b0b934f7708f836fdf660, nTime=1372827390, nBits=1d08359d, nNonce=1403308544, vtx=1, vchBlockSig=3044022064838ba8efaf4fcda26d3111616e550828e0d360b299473f63dd32270036f8f602202641db4242501a1ba79881c5f09717b0b47840ca2e7ae88b9fc5a65aca54dc09)
  Coinbase(hash=09d9d6359b, nTime=1372827390, ver=1, vin.size=1, vout.size=1, nLockTime=0, strTxComment=)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 02cc1e02f700062f503253482f)
    CTxOut(nValue=3.50, scriptPubKey=036d7d566e243a707b80098e63261d8014ad250b0a59ff0009a5f943a1a2f05d5d OP_CHECKSIG)
  vMerkleTree: 09d9d6359b
generated 3.50
AddToWallet 09d9d6359b  new
NotifyTransactionChanged 09d9d6359ba0c1620253b2bfe63c0e1841294d6a502b0b934f7708f836fdf660 status=0
updateWallet 09d9d6359ba0c1620253b2bfe63c0e1841294d6a502b0b934f7708f836fdf660 0
SetBestChain: new best=00000004a11a5a308024  height=7884  trust=7885  date=07/03/13 04:56:30,block hash= 00000004a11a5a3080247c1c1c795d96e7330179d185475eaee48ed698604040
ProcessBlock: ACCEPTED
   inWallet=1 inModel=0 Index=0-0 showTransaction=1 derivedStatus=0
   
   
   
7885
received block 000000082148a6f66e17
SetBestChain: new best=000000082148a6f66e17  height=7885  trust=7886  date=07/03/13 06:54:50,block hash= 000000082148a6f66e17bab8d41af11171bc6f4d9416f983ddad0212a41775c0
NotifyTransactionChanged 09d9d6359ba0c1620253b2bfe63c0e1841294d6a502b0b934f7708f836fdf660 status=1
updateWallet 09d9d6359ba0c1620253b2bfe63c0e1841294d6a502b0b934f7708f836fdf660 1
   inWallet=1 inModel=1 Index=0-1 showTransaction=1 derivedStatus=1
ProcessBlock: ACCEPTED


7886
received block 000000082f31f8c70dd7
SetBestChain: new best=000000082f31f8c70dd7  height=7886  trust=7887  date=07/03/13 04:58:14,block hash= 000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205
ProcessBlock: ACCEPTED




trying 7887
CosmoscoinMiner:
new block found 
  hash: 000000001ccfcd1d3535cf66b610ebec00c22f7584075143fca244a461292688 
target: 000000004c847400000000000000000000000000000000000000000000000000
CBlock(hash=000000001ccfcd1d3535cf66b610ebec00c22f7584075143fca244a461292688, ver=4, hashPrevBlock=000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205, hashMerkleRoot=bcc950ece93fa26d421552d7b1bce67e202805109636de43b82ab6351e898edd, nTime=1372848829, nBits=1ccc8474, nNonce=3857342464, vtx=2, vchBlockSig=3045022100fbda80643e49dc83fbd77a85518be6cf995cdb26b08968258be2517f5b602d8d02200a3650a0705bcc030e13705279d7426291d195a593531dc724351f29acbdae3d)
  Coinbase(hash=5f76e4396a, nTime=1372846614, ver=1, vin.size=1, vout.size=1, nLockTime=0, strTxComment=)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 02cf1e02bf00062f503253482f)
    CTxOut(nValue=3.50, scriptPubKey=036d7d566e243a707b80098e63261d8014ad250b0a59ff0009a5f943a1a2f05d5d OP_CHECKSIG)
  CTransaction(hash=eec1452388, nTime=1372830959, ver=1, vin.size=10, vout.size=1, nLockTime=0, strTxComment=)
    CTxIn(COutPoint(b45018e2f6, 0), scriptSig=304502207213ca61f910d91a)
    CTxIn(COutPoint(32b7f14678, 0), scriptSig=304502205e2cea76de6da34c)
    CTxIn(COutPoint(6f0b98764b, 0), scriptSig=304502201e71fdb127197bcd)
    CTxIn(COutPoint(3bd01c0f4d, 0), scriptSig=304402207174d5b76688422b)
    CTxIn(COutPoint(2c906f6174, 0), scriptSig=304402200e42be1377f33276)
    CTxIn(COutPoint(b19b727915, 0), scriptSig=304502207b4c2cd53215b864)
    CTxIn(COutPoint(dc30fbf141, 0), scriptSig=3046022100c2a6bed8a1311c)
    CTxIn(COutPoint(e625ca77a8, 0), scriptSig=304602210094d81da7803997)
    CTxIn(COutPoint(f039a9dfdc, 0), scriptSig=3044022073449fecc0698427)
    CTxIn(COutPoint(b5d6c2ee98, 0), scriptSig=304402200a11791eb005bae7)
    CTxOut(nValue=35.00, scriptPubKey=OP_DUP OP_HASH160 fe095e8f8e2c4a2cb5f92de4e02084964a6d17ba OP_EQUALVERIFY OP_CHECKSIG)
  vMerkleTree: 5f76e4396a eec1452388 bcc950ece9
generated 3.50
ERROR: CheckProofOfWork() : nBits below minimum work
ERROR: CheckBlock() : proof of work failed
ERROR: ProcessBlock() : CheckBlock FAILED
ERROR: CosmoscoinMiner : ProcessBlock, block not accepted

trying 7887
CosmoscoinMiner:
new block found 
  hash: 000000003c73bcebacaa08b78cfc90a927fc0f8249c610deb2894c14ff708853 
target: 000000004c847400000000000000000000000000000000000000000000000000
CBlock(hash=000000003c73bcebacaa08b78cfc90a927fc0f8249c610deb2894c14ff708853, ver=4, hashPrevBlock=000000082f31f8c70dd7f9a857f04fe14f7df2a57bb9bc1f54d336c70dea6205, hashMerkleRoot=c398fc119e61f31f26dc1688e41a0fbf9c9043433f6c80be7492222ae2c335b7, nTime=1372830001, nBits=1ccc8474, nNonce=1539703040, vtx=1, vchBlockSig=3045022100b4a49d56a693b9ff0992f667d1110b11eda7f5d04ee0af45b633d6e446a90fea022075a7b8b9135cae799374b9bf705562ae840f7add3a49a4c8a8b2a7fbba2c5a07)
  Coinbase(hash=c398fc119e, nTime=1372827513, ver=1, vin.size=1, vout.size=1, nLockTime=0, strTxComment=)
    CTxIn(COutPoint(0000000000, 4294967295), coinbase 02cf1e02af09062f503253482f)
    CTxOut(nValue=3.50, scriptPubKey=02922aa99f761b02d5d6f6c41552260188d6adf143f9e825f2a27c5ae03c0b72dd OP_CHECKSIG)
  vMerkleTree: c398fc119e
generated 3.50
ERROR: CheckProofOfWork() : nBits below minimum work
ERROR: CheckBlock() : proof of work failed
ERROR: ProcessBlock() : CheckBlock FAILED
ERROR: CosmoscoinMiner : ProcessBlock, block not accepted

trying 7887
ERROR: CosmoscoinMiner : proof-of-work not meeting target

 
157  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 03, 2013, 04:09:47 AM
All those looking for a pool should just try mining solo. No problems at the current difficulty

But we still need a pool to get stable reward.
158  Alternate cryptocurrencies / Altcoin Discussion / Re: {}Nanotokens Giveaway--50 coins x1000 people(= [48,700 coins remain] on: July 02, 2013, 02:38:31 AM
Mqm6A2wwPruysQ7wkQUfHJs65uBdjNsNyX
159  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 02, 2013, 02:03:36 AM
Still have issues downloading the wallet not that I put much effort into it might want to clean up the Original thread so I can research this coin

Hey Bro, just download it from the following link, it version 1.5:

Verions 1.5 Windows Download Address: .7z file: http://sdrv.ms/13mxsEN https://mega.co.nz/#!4MMVULhD!Gx0SmUBy4reYhVBqbpPak3JvRsF0ZZ7S3Pl5ESLidOU

.exe setup: http://sdrv.ms/13mxtZo https://mega.co.nz/#!wZtDyCZY!aPC4iWVX7adWLsQMNH1I5SfU0BgpHk_PZrCQbAPMgnk

For Linux version or MacOS version, you can get the souce code form https://github.com/cosmoscoin/cosmoscoin and compile it by your self.

160  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CMC]CosmosCoin-PoW/PoS |Transaction Comment|0 Premine|Quick Confirm on: July 01, 2013, 11:00:05 PM
Verion 1.5 Update Thread
https://bitcointalk.org/index.php?topic=248017


CosmosCoin now has a new update version - 1.5, feel free to update.


Update Version [1.5]
1 add network hash speed output in Debug->console (type 'getmininginfo' you can get the network hash speed)
2 transaction fee is zero - This wouldn't effect the previous transactions
3 add Chinese Translation to CosmosCoin Client
4 Other little bugs fixed

Verions 1.5 Windows Download Address:
.7z file:
http://sdrv.ms/13mxsEN
https://mega.co.nz/#!4MMVULhD!Gx0SmUBy4reYhVBqbpPak3JvRsF0ZZ7S3Pl5ESLidOU


.exe setup:
http://sdrv.ms/13mxtZo
https://mega.co.nz/#!wZtDyCZY!aPC4iWVX7adWLsQMNH1I5SfU0BgpHk_PZrCQbAPMgnk


For Linux version or MacOS version, you can get the souce code form https://github.com/cosmoscoin/cosmoscoin and compile it by your self.

Following dev steps:
1 We will release CMC official website in this week
2 Still working on CMC P2Pool
3 CMC pushpool will be released in this week
Pages: « 1 2 3 4 5 6 7 [8] 9 10 11 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!