Bitcoin Forum
May 10, 2024, 04:10:23 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: If everybody agrees, at this time we can push out a short term fix. I make no guarantees that the difficulty won't get jacked up again, but at this point I just want the coin to move again and don't see a long term solution coming.
Yes, "band-aid" the coin.
No, thats a waste of time. Wait for a solid fix.

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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 »
  Print  
Author Topic: [ANN][CRC] Craftcoin - Portable Minecraft Game Currency w. Economy Plugin  (Read 92231 times)
SaltySpitoon
Legendary
*
Offline Offline

Activity: 2590
Merit: 2154


Welcome to the SaltySpitoon, how Tough are ya?


View Profile
July 30, 2013, 07:32:41 PM
 #421

I would highly advise against downloading the new client for this moment. Justin, I'm glad you are helping, but I think it would be a good idea if before releasing the client, you allow Blindfolded to check it over. If nothing else, to just double check to make sure there aren't any mistakes and that your solution will truely help the situation in the more than immediate future.
1715357423
Hero Member
*
Offline Offline

Posts: 1715357423

View Profile Personal Message (Offline)

Ignore
1715357423
Reply with quote  #2

1715357423
Report to moderator
1715357423
Hero Member
*
Offline Offline

Posts: 1715357423

View Profile Personal Message (Offline)

Ignore
1715357423
Reply with quote  #2

1715357423
Report to moderator
In order to achieve higher forum ranks, you need both activity points and merit points.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715357423
Hero Member
*
Offline Offline

Posts: 1715357423

View Profile Personal Message (Offline)

Ignore
1715357423
Reply with quote  #2

1715357423
Report to moderator
1715357423
Hero Member
*
Offline Offline

Posts: 1715357423

View Profile Personal Message (Offline)

Ignore
1715357423
Reply with quote  #2

1715357423
Report to moderator
1715357423
Hero Member
*
Offline Offline

Posts: 1715357423

View Profile Personal Message (Offline)

Ignore
1715357423
Reply with quote  #2

1715357423
Report to moderator
justin7674
Full Member
***
Offline Offline

Activity: 136
Merit: 100


View Profile
July 30, 2013, 07:37:03 PM
 #422

Alright I will go ahead and get the next block mined and tell you if it readjusts!
Russ should approve it in a few hours.
I do have prior experience in working on coins. So, I am sure this will help in the future as long as immediately. However, we need atleast 1 more person on the network to help me do the test.
justin7674
Full Member
***
Offline Offline

Activity: 136
Merit: 100


View Profile
July 30, 2013, 07:43:55 PM
 #423

I don't believe Magnet was correct he just removed his post. We will see what he says.
MaGNeT
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Waves | 3PHMaGNeTJfqFfD4xuctgKdoxLX188QM8na


View Profile WWW
July 30, 2013, 07:43:58 PM
 #424

Alright I will go ahead and get the next block mined and tell you if it readjusts!
Russ should approve it in a few hours.
I do have prior experience in working on coins. So, I am sure this will help in the future as long as immediately. However, we need atleast 1 more person on the network to help me do the test.

Well, the new upload is still the old file.
Did a MD5 compare, both files give same hash.

Sometimes Quality needs to come before Speed.

Edit, think it was my browser cache? Did an CTRL+5 and now I got a file with another MD5 hash.
So I think this time he got it right  Grin

I don't believe Magnet was correct he just removed his post. We will see what he says.

Problem was on my side, don't understand what happened but second time I downloaded it, it was different.

Old client hash: 69084E87510442FCD13C92B7ABB9243D
New client hash: A33C67AF3780E585A97043079A3E33B5


CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
July 30, 2013, 07:59:11 PM
 #425

I would highly advise against downloading the new client for this moment. Justin, I'm glad you are helping, but I think it would be a good idea if before releasing the client, you allow Blindfolded to check it over. If nothing else, to just double check to make sure there aren't any mistakes and that your solution will truely help the situation in the more than immediate future.

Thanks for this statement!
+1

CartmanSPC
Legendary
*
Offline Offline

Activity: 1270
Merit: 1000



View Profile
July 30, 2013, 10:34:45 PM
 #426

Here are the changes made in the code. If the difficulty adjustment is changed I think we can do something better than this but am not volunteering  Tongue

justin7674, consider paying more attention to the comments detail. There are two spots where you did not update the comments with the correct values.

Original
Code:
static const int64 nTargetTimespan = 1 * 24 * 60 * 60; // CraftCoin: 1 days
justin7674
Code:
static const int64 nTargetTimespan = 3 * 60 * 60; // CraftCoin: 3 hrs

Original
Code:
static const int64 nReTargetHistoryFact = 4; // look at 4 times the retarget
                                             // interval into the block history
justin7674 (need to fix the comments to say "look at 6 times the retarget")
Code:
static const int64 nReTargetHistoryFact = 6; // look at 4 times the retarget
                                             // interval into the block history


Original
Code:
        // Maximum 400% adjustment...
        bnResult *= 4;
        // ... in best-case exactly 4-times-normal target time
justin7674 (need to change "400%" comment to "200%")
Code:
        // Maximum 400% adjustment...
        bnResult *= 2;
        // ... in best-case exactly 2-times-normal target time

justin7674
Full Member
***
Offline Offline

Activity: 136
Merit: 100


View Profile
July 30, 2013, 10:46:51 PM
 #427

Sorry, I will have that corrected tonight.
coinerd
Full Member
***
Offline Offline

Activity: 196
Merit: 100


View Profile
July 30, 2013, 11:15:06 PM
 #428

I would highly advise against downloading the new client for this moment. Justin, I'm glad you are helping, but I think it would be a good idea if before releasing the client, you allow Blindfolded to check it over. If nothing else, to just double check to make sure there aren't any mistakes and that your solution will truely help the situation in the more than immediate future.

+1 for that.

As soon as I can pull this from the official craftcoin repository I'll be happy to move forward with it.
Bonz
Full Member
***
Offline Offline

Activity: 213
Merit: 100


Mining history: BTC->LTC->FTC->CRC:2200kh/s


View Profile WWW
July 31, 2013, 05:30:04 AM
 #429

wait does all this mean i should point my miners back @crc.scryptmining again?

If I've helped you, who knows it could happen =) PLZ donate      BTC - 34CGHYkhKi2eFP5GBhtsNpQdFvrxo7WT1u     LTC - WfGiVRgBTLWzfiEfg69QVReWiDvMuQxxHW
                                                                                              FTC - 9x9DT1QDe9bP5E75gSDnkwbVWmwjevpiAQ     CRC - Q5swva1yTrD3Gh7HijDSiETvk6evpe5apl
justin7674
Full Member
***
Offline Offline

Activity: 136
Merit: 100


View Profile
July 31, 2013, 05:52:20 AM
 #430

It would be best if you point your miner at : http://198.50.233.9:8830/static/
MaGNeT
Legendary
*
Offline Offline

Activity: 1526
Merit: 1002


Waves | 3PHMaGNeTJfqFfD4xuctgKdoxLX188QM8na


View Profile WWW
July 31, 2013, 10:58:26 AM
 #431

The diff doesn't seem to be changing. What's holding it?
TierNolan
Legendary
*
Offline Offline

Activity: 1232
Merit: 1083


View Profile
July 31, 2013, 11:43:23 AM
 #432

The diff doesn't seem to be changing. What's holding it?

The update changes the diff calculations.  It updates faster than before.  However, there is still a need to actually find the next few blocks at (relatively) high diff.

There still hasn't been an official confirm, just that the change will be looked at.

1LxbG5cKXzTwZg9mjL3gaRE835uNQEteWF
Bonz
Full Member
***
Offline Offline

Activity: 213
Merit: 100


Mining history: BTC->LTC->FTC->CRC:2200kh/s


View Profile WWW
July 31, 2013, 03:09:53 PM
 #433

It would be best if you point your miner at : http://198.50.233.9:8830/static/

naw i'd rather stick with scryptmining i can't stand p2pools

If I've helped you, who knows it could happen =) PLZ donate      BTC - 34CGHYkhKi2eFP5GBhtsNpQdFvrxo7WT1u     LTC - WfGiVRgBTLWzfiEfg69QVReWiDvMuQxxHW
                                                                                              FTC - 9x9DT1QDe9bP5E75gSDnkwbVWmwjevpiAQ     CRC - Q5swva1yTrD3Gh7HijDSiETvk6evpe5apl
justin7674
Full Member
***
Offline Offline

Activity: 136
Merit: 100


View Profile
July 31, 2013, 04:00:46 PM
 #434

The diff doesn't seem to be changing. What's holding it?

The update changes the diff calculations.  It updates faster than before.  However, there is still a need to actually find the next few blocks at (relatively) high diff.

There still hasn't been an official confirm, just that the change will be looked at.

+1 should be about 10 more blocks and it readjusts. After this it will readjust every 36 blocks. We repaired the max mint every day because the previous wasn't matching the amount of blocks generated every day.
Bonz
Full Member
***
Offline Offline

Activity: 213
Merit: 100


Mining history: BTC->LTC->FTC->CRC:2200kh/s


View Profile WWW
August 01, 2013, 01:42:28 AM
 #435

so what your saying is it's time to put my 2 mhash to it?  how long do you think 10 blocks would take at 16mhash (network speed once i join)


The diff doesn't seem to be changing. What's holding it?

The update changes the diff calculations.  It updates faster than before.  However, there is still a need to actually find the next few blocks at (relatively) high diff.

There still hasn't been an official confirm, just that the change will be looked at.

+1 should be about 10 more blocks and it readjusts. After this it will readjust every 36 blocks. We repaired the max mint every day because the previous wasn't matching the amount of blocks generated every day.

If I've helped you, who knows it could happen =) PLZ donate      BTC - 34CGHYkhKi2eFP5GBhtsNpQdFvrxo7WT1u     LTC - WfGiVRgBTLWzfiEfg69QVReWiDvMuQxxHW
                                                                                              FTC - 9x9DT1QDe9bP5E75gSDnkwbVWmwjevpiAQ     CRC - Q5swva1yTrD3Gh7HijDSiETvk6evpe5apl
PoolMinor
Legendary
*
Offline Offline

Activity: 1843
Merit: 1338


XXXVII Fnord is toast without bread


View Profile
August 01, 2013, 01:51:50 AM
 #436

Until these 2 sites get updated with the "new" wallet I will not be doing any downloading of the files.

https://github.com/craftcoin/craftcoin

http://craftcoin.net/download.html

Btc=C2MF       Free BTC Poker
Being defeated is often a temporary condition. Giving up is what makes it permanent. -Marilyn vos Savant
SaltySpitoon
Legendary
*
Offline Offline

Activity: 2590
Merit: 2154


Welcome to the SaltySpitoon, how Tough are ya?


View Profile
August 01, 2013, 03:20:04 AM
Last edit: August 01, 2013, 03:30:45 AM by SaltySpitoon
 #437

Speaking as a CRC user, the thing that concerns me most here, is not Justin's ability or intentions, its that if for whatever reason Blindfolded disapproves of the change, and the forked chain has already gone ahead and made any significant amount of traction, it will be a massive pain trying to fix the fix. It will be node hell, upon the return to the original, the client will be looking for the best height and difficulty, and will not know to ban the existing nodes created by the fork, causing all sorts of syncing errors and issues.
nearmiss
Sr. Member
****
Offline Offline

Activity: 448
Merit: 250



View Profile
August 01, 2013, 03:25:22 AM
 #438

http://crc.scryptmining.com will update whenever official github is updated.


Watching this thread.

Profit-Switching Pool w/ Vardiff -> http://hashco.ws  Optionally keep the alts we mine or auto-trade for BTC. In addition can be paid out in any of: 365, AC, BC,  BTC, C2, CINNI, COMM, FAC, HBN, MINT, PMC, QRK, RDD, WC, XBC
Bonz
Full Member
***
Offline Offline

Activity: 213
Merit: 100


Mining history: BTC->LTC->FTC->CRC:2200kh/s


View Profile WWW
August 01, 2013, 03:45:42 AM
 #439

Me 2... Intently!!! i have placed my backup rig on your pool in case i miss the time you update! when you do i will also place my larger rig on crc.scryptmining


http://crc.scryptmining.com will update whenever official github is updated.


Watching this thread.

If I've helped you, who knows it could happen =) PLZ donate      BTC - 34CGHYkhKi2eFP5GBhtsNpQdFvrxo7WT1u     LTC - WfGiVRgBTLWzfiEfg69QVReWiDvMuQxxHW
                                                                                              FTC - 9x9DT1QDe9bP5E75gSDnkwbVWmwjevpiAQ     CRC - Q5swva1yTrD3Gh7HijDSiETvk6evpe5apl
efx
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250


View Profile
August 01, 2013, 04:03:40 AM
 #440

Someone hardforked craftcoin and went back 50 blocks to reset difficulty.
I had to delete my blockchain for this to take effect.

addnode=199.180.115.100

+

Quote from: justin7674
To be honest. Blindfolded fucked the network. He literally ditched it. I am the developer for the java plugin and he has just up and left. HE IS GONE THIS COIN IS DEAD AND DOESNT DESERVE ITS SLOT ON CRYPTSY

I am removing the java plugin and making it compatible for bottlecaps. Everyone move on from this thread.

+

Quote from: justin7674

There is no risk in testing the client from another computer. But, your loss. There is a pool that has reviewed the code and is agreeing to post a new pool to set the chain in place and unfreeze it. Nobody's transactions or money will be lost!


It's pretty (very) obvious that you do not really know what's going on. Essentially anyone on this forum could have implemented your 'fix', it's a temporary measure at best and needlessly introduces potential risks. Releasing the client and attempting to gain hashrate without approval is definitely on the edge of malicious.



"Your loss." Hm right, because those who do not decide to join your little fork would be left with devalued coins. Nice.

Forgive me if I do not find your references very impressive, especially after your baseless little outburst.


Anyways, as SaltySpitoon already mentioned,  nodes with a seemingly better height are going to be seen by the client and they will not be rejected immediately. The lack of node consensus is  not going to help anything, as such an insignificant edit means this will not be the last crc fork and the needless division of non-malicious network hashrate is entirely counter-productive. 

I say that you should all wait for a *real* fix, not a simple reduction in adjustment period.  Empirical evidence has already shown such a simplistic change is not a long-term solution to the problem of highly variable hashrate and introduces new potential risks.

Anyways, I hopefully didn't need to point any of the above out and you are all aware of what highly irregular coin generation can do to small economies.

 
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 »
  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!