casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
April 29, 2014, 06:11:35 PM |
|
If you use cryptsy then this is GREAT. You can now trade any pair to CasinoCoin and vise versa. They do not list litecoin, but doge is there and that is a ltc/btc pair on cryp. wiki.cryptsy.com Updating https://cccitypoker.com/getcsc soon
|
|
|
|
bigtimespaghetti
Legendary
Offline
Activity: 1652
Merit: 1057
bigtimespaghetti.com
|
|
April 29, 2014, 06:54:34 PM |
|
Might pick one of those coins up for myself! Are you accepting CSC?
As well guys added a rebatch of FREE CasinoCoin tournaments at cccitypoker.com
Yes I am accepting CSC, and there is a small discount for using any crypto, if you're interested, take a look at the thread or pop me a message and I can sort something out for you
|
|
|
|
Spakler
|
|
April 30, 2014, 06:20:49 PM |
|
1)This is due to the KGW bug, that we would have to implement and launch an updated wallet.
You know what has to be done? Is there any other way to do this without transcoder, because i just dont see much action from his side at the moment.
|
|
|
|
CartmanSPC
Legendary
Offline
Activity: 1270
Merit: 1000
|
|
April 30, 2014, 06:52:25 PM |
|
1)This is due to the KGW bug, that we would have to implement and launch an updated wallet.
You know what has to be done? Is there any other way to do this without transcoder, because i just dont see much action from his side at the moment. To save transcoder the time and effort someone could do a pull request of the code changes to fix the KGW bug (on github). He would then have to accept the changes after he reviews them. The alternative is a fork of the codebase but that should be a last resort.
|
|
|
|
Spakler
|
|
April 30, 2014, 06:57:42 PM |
|
1)This is due to the KGW bug, that we would have to implement and launch an updated wallet.
You know what has to be done? Is there any other way to do this without transcoder, because i just dont see much action from his side at the moment. To save transcoder the time and effort someone could do a pull request of the code changes to fix the KGW bug (on github). He would then have to accept the changes after he reviews them. The alternative is a fork of the codebase but that should be a last resort. Already pulled a copy of the repo, i could create a new branch, make the neccesary and push them back if that is allowed by github? but i still have to know what code changes need to be done. Any idea?
|
|
|
|
Spakler
|
|
April 30, 2014, 07:07:17 PM |
|
Someone on twitter asked how to transer paperwallet funds from the paper wallet back to their digital wallet. Is this the same like with the bitcoind cmd lines?
Example to unlock the wallet for 120 seconds: casinocoind "walletpassphrase" "yourpassphrase" 120
Expample to import withdraw funds from paperwallet to digital wallet: casinicoind importprivkey "privatekeystring"
is this right?
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
April 30, 2014, 07:28:13 PM |
|
Someone on twitter asked how to transer paperwallet funds from the paper wallet back to their digital wallet. Is this the same like with the bitcoind cmd lines?
Example to unlock the wallet for 120 seconds: casinocoind "walletpassphrase" "yourpassphrase" 120
Expample to import withdraw funds from paperwallet to digital wallet: casinicoind importprivkey "privatekeystring"
is this right?
Correct, same commands as bitcoind I've been learning a little bit of java alongside objective-C lately so I could make the changes yes, it's just then rounding together everyone and having the updated wallet released. There is a few pages back where it is talked about and a thread about the fix going to try and find it now, Cartman is right on both options as well, update the current repo or fork.
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
April 30, 2014, 07:29:35 PM |
|
Right here:https://bitcointalk.org/index.php?topic=552895.0 It is April Fools day today, but this is no april fool trick. I believe BCX stands behind his words, even on April Fools day. The exploit BCX has found in KGW implememtation is real and, I believe, he is most likely attacking with the exploit just now. However, we have also found a fix to it which will close the case. BCX has confirmed that the fix, when effective, will prevent using the exploit. Since we are in a kind of stalemate we have agreed to settle down. Continuing this battle is worthless and would only cause harm to all participants. The fix is not yet effective and it is quite likely much damage would be caused if attack would get to the end. Also we all have achieved what we were after; BCX has made his point clear and the coin will be fixed. From the beginning, no one, not even BCX has wanted to destroy the coin. BCX, do you agree? Is this an agreement? EDIT: Here is the fix, feel free to update your coins. just change the hard fork block number diff --git a/src/main.cpp b/src/main.cpp index fd881d1..7687d3a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -886,7 +886,7 @@ unsigned int static GravityWell(const CBlockIndex* pindexLast, const CBlock *pbl double EventHorizonDeviationSlow; if (BlockLastSolved == NULL || BlockLastSolved->nHeight == 0 || (uint64)BlockLastSolved->nHeight < PastBlocksMin) { return bnProofOfWorkLimit.GetCompact - + int64 LatestBlockTime = BlockLastSolved->GetBlockTime(); for (unsigned int i = 1; BlockReading && BlockReading->nHeight > 0; i++) { if (PastBlocksMax > 0 && i > PastBlocksMax) { break; } PastBlocksMass++; @@ -895,10 +895,14 @@ unsigned int static GravityWell(const CBlockIndex* pindexLast, const CBlock *pbl else { PastDifficultyAverage = ((CBigNum().SetCompact(BlockReading->nBits) - PastDifficultyAveragePrev) / i) + PastDifficultyAvera PastDifficultyAveragePrev = PastDifficultyAverage; - PastRateActualSeconds = BlockLastSolved->GetBlockTime() - BlockReading->GetBlockTime(); + if (LatestBlockTime < BlockReading->GetBlockTime()) { + if (BlockReading->nHeight > XXXXX) // HARD Fork block number + LatestBlockTime = BlockReading->GetBlockTime(); + } + PastRateActualSeconds = LatestBlockTime - BlockReading->GetBlockTime(); PastRateTargetSeconds = TargetBlocksSpacingSeconds * PastBlocksMass; PastRateAdjustmentRatio = double(1); - if (PastRateActualSeconds < 0) { PastRateActualSeconds = 0; } + if (BlockReading->nHeight > XXXXX) { // HARD Fork block number + if (PastRateActualSeconds < 1) { PastRateActualSeconds = 1; } + } else { + if (PastRateActualSeconds < 0) { PastRateActualSeconds = 0; } + } if (PastRateActualSeconds != 0 && PastRateTargetSeconds != 0) { PastRateAdjustmentRatio = double(PastRateTargetSeconds) / double(PastRateActualSeconds); }
Edit2: small modification for the fix Edit3: added a missing an opening curly bracket, ty Cannacoin!
|
|
|
|
Spakler
|
|
April 30, 2014, 08:02:33 PM |
|
Right here:https://bitcointalk.org/index.php?topic=552895.0
I created a new branch with the changes, but I dont have the permissions to push a new branch transcoders repo. I'll keep the changes stashed for when he gets back.
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
April 30, 2014, 09:19:36 PM |
|
Right here:https://bitcointalk.org/index.php?topic=552895.0
I created a new branch with the changes, but I dont have the permissions to push a new branch transcoders repo. I'll keep the changes stashed for when he gets back. Thats the problem we have to wait for him to come around for changes, I wish hed given me access to the GIT account so we wouldnt run into these problems. I WANT this coin to succeed, but we need someone who is active and around to keep things running smoothly. If you take a look at my activity Im pretty much always on and near a computer.
|
|
|
|
GoldSeal
Legendary
Offline
Activity: 1862
Merit: 1002
|
|
April 30, 2014, 10:08:49 PM |
|
Right here:https://bitcointalk.org/index.php?topic=552895.0
I created a new branch with the changes, but I dont have the permissions to push a new branch transcoders repo. I'll keep the changes stashed for when he gets back. Thats the problem we have to wait for him to come around for changes, I wish hed given me access to the GIT account so we wouldnt run into these problems. I WANT this coin to succeed, but we need someone who is active and around to keep things running smoothly. If you take a look at my activity Im pretty much always on and near a computer. Has he answered any messages?
|
Moving to Puerto Rico...
|
|
|
GoldSeal
Legendary
Offline
Activity: 1862
Merit: 1002
|
|
April 30, 2014, 10:11:16 PM |
|
Ok sweet, will add the site there after I finish up the affiliates page and add banners with embed code etc! If anyone has a vast supply of CSC, LTC, or BTC Please pm me for some profit sharing opportunities. We will be implementing a method to allow for Bitcoin, and Litecoin deposit to cccitypoker and each currency will be transferred into chips (CSC) All withdraws will be in CSC ONLY This is a good idea.
|
Moving to Puerto Rico...
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
May 02, 2014, 01:21:03 AM |
|
Yep its posted on the website homepage as well, http://printpaperwallet.comTried making contact a few weeks back but still nothing wish it was like iMessage with the delivered, Read, opened kind of thing
|
|
|
|
veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
May 02, 2014, 07:51:22 AM Last edit: May 02, 2014, 08:32:34 AM by veertje |
|
Maybe post a twitter here https://twitter.com/LenaPoker. A lot of followers on crypto and she is on poker and crypto. I don't have twitter
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
May 02, 2014, 08:38:30 PM |
|
|
|
|
|
veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
May 03, 2014, 12:09:36 AM |
|
If positive, welcome her here on bitcointalk of CSC as well. Not a better person to find to promote CSC!! CSC will skyrocket!!
|
|
|
|
casinocoin
Legendary
Offline
Activity: 849
Merit: 1050
CasinoCoin
|
|
May 03, 2014, 06:45:02 AM |
|
If positive, welcome her here on bitcointalk of CSC as well. Not a better person to find to promote CSC!! CSC will skyrocket!! Would love to get her in with CSC and would provide a big starting wallet! It seems that there is a select few who have sticken with casinocoin over the last few months and I'd like To hear from yous on the best ways to attract more people, and get them to the poker site
|
|
|
|
amarian12
|
|
May 03, 2014, 12:00:05 PM |
|
|
Imagine a future where IT infrastructures monitor themselves, are able to predict and respond to future business needs and can protect and heal themselves automatically.
|
|
|
veertje
Legendary
Offline
Activity: 952
Merit: 1000
|
|
May 03, 2014, 08:48:47 PM |
|
Would love to get her in with CSC and would provide a big starting wallet! It seems that there is a select few who have sticken with casinocoin over the last few months and I'd like To hear from yous on the best ways to attract more people, and get them to the poker site
You can twitter more often to that same community she is twitting with. Women don't make a choice that fast Don't give up, the looks on twitter of CSC are good. Maybe name CasinoCoin instead of CSC. Nice logo!!! Use that as well.
|
|
|
|
|