CrazyLoaf
|
|
December 13, 2017, 10:21:34 AM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
|
|
|
|
vancefox
Legendary
Offline
Activity: 1033
Merit: 1005
|
|
December 14, 2017, 12:36:17 AM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
Both, actually. Tranz is forking the coin to repay Cryptopia and put in the fixes to make it so it doesn't happen again.
|
This space not for rent...
|
|
|
Hilux74
Legendary
Offline
Activity: 912
Merit: 1000
|
|
December 14, 2017, 04:28:49 AM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
The weird-ass CAPP alternative is exactly that....a weird-ass alt of an alt for no reason. The sexy-ass CAP will remain.
|
|
|
|
paramind22
|
|
December 14, 2017, 04:40:51 AM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
Both, actually. Tranz is forking the coin to repay Cryptopia and put in the fixes to make it so it doesn't happen again. Would be great if there was a fix for the bloating the wallet had as far as RAM. I see the new CAPP wallet is tiny, but maybe because it has no coins and is not staking?
|
|
|
|
vancefox
Legendary
Offline
Activity: 1033
Merit: 1005
|
|
December 14, 2017, 05:14:16 AM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
Both, actually. Tranz is forking the coin to repay Cryptopia and put in the fixes to make it so it doesn't happen again. Would be great if there was a fix for the bloating the wallet had as far as RAM. I see the new CAPP wallet is tiny, but maybe because it has no coins and is not staking? Memory is based on how many blocks it has to store. Each transaction is x number of kb... that equates to a large 2GB+ memory hog if there's a large blockchain that must all be loaded in order to perform proper operation. Since it's a PoS coin, that's what needs to happen... only way to correct it would be to restart the chain with a single entry paying out all current wallets with current balances and going forward from there... downside on that is the weight would go away.
|
This space not for rent...
|
|
|
Turrican
Member
Offline
Activity: 227
Merit: 26
“BitCloud [BTDX]”
|
|
December 14, 2017, 07:42:34 AM |
|
Looks good Why use "fTestNet" on MainNet to ? Code is mostly done and tested. Here is gist of what I came up with. Does anyone see a problem? Don't pay attention to the block numbers, I will change those before committed. main.h static const int RECOVER_DBLSP_HEIGHT_TESTNET = 1180; // DoubleSpend Fix Testnet. static const int RECOVER_DBLSP_HEIGHT = 5554600; // DoubleSpend Fix MainNet main.cpp ... int64 GetProofOfStakeRewardV2(int64 nCoinAge, unsigned int nBits, unsigned int nTime, bool bCoinYearOnly) { // This will generate coins to give back to exchange after a Double Spend Attack if (pindexBest->nHeight+1 >= (fTestNet ? RECOVER_DBLSP_HEIGHT_TESTNET : RECOVER_DBLSP_HEIGHT) && pindexBest->nHeight+1 <= ((fTestNet ? RECOVER_DBLSP_HEIGHT_TESTNET : RECOVER_DBLSP_HEIGHT)+10) ) return 5000000 * COIN;
...
... // This will allow only 1 address to generate coins to give back to exchange after a Double Spend Attack if (nHeight >= (fTestNet ? RECOVER_DBLSP_HEIGHT_TESTNET : RECOVER_DBLSP_HEIGHT) && nHeight <= ((fTestNet ? RECOVER_DBLSP_HEIGHT_TESTNET : RECOVER_DBLSP_HEIGHT)+10) ) {
if(!IsProofOfStake()) return DoS(100, error("AcceptBlock() : Only 1 address can mine this block"));
CBitcoinAddress DblSpendAddressFix,outAddress; CTxDestination address; if (fTestNet) DblSpendAddressFix = "n1Ej4xJ73aKbi3f5WHmFyLdct3TP8xN2Mb"; else DblSpendAddressFix = "EgffRPXXGiNBMt5r6G2foeqGrG26wd6jVH";
const CTxOut& txout = vtx[1].vout[1]; ExtractDestination(txout.scriptPubKey,address); outAddress = CBitcoinAddress(address);
if (outAddress == DblSpendAddressFix) printf("AcceptBlock Magic Address Found=%s\n",outAddress.ToString().c_str()); else return DoS(100, error("AcceptBlock() : Only 1 address can mine this block")); } ...
|
|
|
|
Tranz
Legendary
Offline
Activity: 1540
Merit: 1060
May the force bit with you.
|
|
December 14, 2017, 12:55:06 PM |
|
fTestNet ? is a choice, like an if statement. It is so I can test the actually line, but when it runs on MainNet it uses a different address and block number.
|
|
|
|
Turrican
Member
Offline
Activity: 227
Merit: 26
“BitCloud [BTDX]”
|
|
December 15, 2017, 10:39:45 AM |
|
fTestNet ? is a choice, like an if statement. It is so I can test the actually line, but when it runs on MainNet it uses a different address and block number.
Thanks ... my fauls i think fTestNet ist only for the Testnet
|
|
|
|
Tranz
Legendary
Offline
Activity: 1540
Merit: 1060
May the force bit with you.
|
|
December 16, 2017, 10:36:18 PM |
|
Ok put to github for review. https://github.com/Tranz5/bottlecaps/commit/037a0308beaef137b61ac6ca217113a597d7c7b8Waiting for Ryu to add a new splash screen and then I will release with exe and send alerts out to older clients. Fork will happen at block 3390000 or about 30,000 blocks from now. Or 15-20 days from now. Should be plenty of time for everyone to upgrade. I will send a note to Crypotpia, here in the next day or so.
|
|
|
|
vampirus
|
|
December 17, 2017, 06:15:53 AM |
|
Do you want generate 55M coins? How much Cryptopia lost?
|
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 01:50:55 PM |
|
So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
The weird-ass CAPP alternative is exactly that....a weird-ass alt of an alt for no reason. The sexy-ass CAP will remain. So once this is all sorted out will CAP be opened up again like before on the Cryptopia exchange? or Does everyone have to move to the new CAPP? Catching up on the thread. Thanks in advance and thanks for everyone putting in the time to make this happen.
|
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 02:04:36 PM |
|
What the hell is going on with this piece of shit PoS coin?
So someone got hacked or forked the network or whatever and now someone made another fork and we have to send CAP to them or sign a message or something to get CAPP?
This is a $100k marketcap coin. Ain't nobody got time for that...
CAPP not fork of CAP, fully new coin with initial distribution to CAP users, except exchanges and hacker addresses. CAPP start in 2018 and may be never will be on exchange. If all yours CAP at home wallet, just keep reserve copy of wallet.dat I am not sure what to do here I have: 7,445 in my personal wallet and 198,740 on Cryptopia Are we waiting for a new CAP Wallet? It would be helpful if someone can simply list what the actions are that are planned for. There seems to be allot of CONDITIONS such as, if your on the list? If you have only so much? But it does not say where in either personal or exchage wallet... Etc. etc. Please advise and thank you
|
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 02:22:38 PM |
|
I decide take richlist snapshot today. You anyway not get yours CAP from exchange. I remove some inactive and exchange addresses. If you not find yours address let me know.
I have 198,740 on Cryptopia. Am I suppose to check my deposit address from Cryptopia on this list? Or is this a personal wallet list? Sorry for the questions but not sure what I am checking for.
|
|
|
|
vampirus
|
|
December 17, 2017, 04:49:02 PM |
|
I decide take richlist snapshot today. You anyway not get yours CAP from exchange. I remove some inactive and exchange addresses. If you not find yours address let me know.
I have 198,740 on Cryptopia. Am I suppose to check my deposit address from Cryptopia on this list? Or is this a personal wallet list? Sorry for the questions but not sure what I am checking for. If you have 198,740 on Cryptopia before November, 6 and send me proof, I give you 19874 CAPP All CAPP coins is free bonus to active CAP users. CAP continue working.
|
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 06:07:12 PM |
|
I decide take richlist snapshot today. You anyway not get yours CAP from exchange. I remove some inactive and exchange addresses. If you not find yours address let me know.
I have 198,740 on Cryptopia. Am I suppose to check my deposit address from Cryptopia on this list? Or is this a personal wallet list? Sorry for the questions but not sure what I am checking for. If you have 198,740 on Cryptopia before November, 6 and send me proof, I give you 19874 CAPP All CAPP coins is free bonus to active CAP users. CAP continue working. Proof being send via IM. However, will cryptopia open back up again CAP? Or will CAP die off to CAPP?
|
|
|
|
vancefox
Legendary
Offline
Activity: 1033
Merit: 1005
|
|
December 17, 2017, 06:24:12 PM |
|
What the hell is going on with this piece of shit PoS coin?
So someone got hacked or forked the network or whatever and now someone made another fork and we have to send CAP to them or sign a message or something to get CAPP?
This is a $100k marketcap coin. Ain't nobody got time for that...
CAPP not fork of CAP, fully new coin with initial distribution to CAP users, except exchanges and hacker addresses. CAPP start in 2018 and may be never will be on exchange. If all yours CAP at home wallet, just keep reserve copy of wallet.dat I am not sure what to do here I have: 7,445 in my personal wallet and 198,740 on Cryptopia Are we waiting for a new CAP Wallet? It would be helpful if someone can simply list what the actions are that are planned for. There seems to be allot of CONDITIONS such as, if your on the list? If you have only so much? But it does not say where in either personal or exchage wallet... Etc. etc. Please advise and thank you CAP ≠ CAPP. Different blockchains. You do not need to get the new CAPP wallet but if you are in the top 250 wallets as of Nov something you have "free" CAPP coins, divided by 10. i.e. 1 mill CAP equals 100k CAPP. Same address so you'll need to import that address into the CAPP wallet. As for CAP, Tranz is going to release a new wallet soon with a new fork slated for next month to fix the double spend attach issue and reimburse Cryptopia for it's lost coins. CAP will still live on.
|
This space not for rent...
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 06:33:31 PM |
|
What the hell is going on with this piece of shit PoS coin?
So someone got hacked or forked the network or whatever and now someone made another fork and we have to send CAP to them or sign a message or something to get CAPP?
This is a $100k marketcap coin. Ain't nobody got time for that...
CAPP not fork of CAP, fully new coin with initial distribution to CAP users, except exchanges and hacker addresses. CAPP start in 2018 and may be never will be on exchange. If all yours CAP at home wallet, just keep reserve copy of wallet.dat I am not sure what to do here I have: 7,445 in my personal wallet and 198,740 on Cryptopia Are we waiting for a new CAP Wallet? It would be helpful if someone can simply list what the actions are that are planned for. There seems to be allot of CONDITIONS such as, if your on the list? If you have only so much? But it does not say where in either personal or exchage wallet... Etc. etc. Please advise and thank you CAP ≠ CAPP. Different blockchains. You do not need to get the new CAPP wallet but if you are in the top 250 wallets as of Nov something you have "free" CAPP coins, divided by 10. i.e. 1 mill CAP equals 100k CAPP. Same address so you'll need to import that address into the CAPP wallet. As for CAP, Tranz is going to release a new wallet soon with a new fork slated for next month to fix the double spend attach issue and reimburse Cryptopia for it's lost coins. CAP will still live on. Awesome news !!!! 1. I sent proof to Vampirus just a few min ago with screen shots of my cryptopia account. I am a newbie so the forum will not let me send images. I had to use Lightshot for screen shots. 2. Where do I find the new CAPP wallet? Is it live or still under test? For whatever it is worth I started with Bottlecap and while its future is un-determined yet I have an affinity to the coin !!! Thanks Tranz and everyone else for making this happen.
|
|
|
|
|
gsambolin
Newbie
Offline
Activity: 78
Merit: 0
|
|
December 17, 2017, 08:38:17 PM |
|
So I downloaded the new wallet, got it synced up. I did not do this before I sent Vampirus the proof of my cryptopia account. I assume I send him one of the new address's inside this new wallet for the CAPP coins ?
|
|
|
|
vancefox
Legendary
Offline
Activity: 1033
Merit: 1005
|
|
December 18, 2017, 04:32:01 AM |
|
So I downloaded the new wallet, got it synced up. I did not do this before I sent Vampirus the proof of my cryptopia account. I assume I send him one of the new address's inside this new wallet for the CAPP coins ? You'll have to ask the dev... suggest in the coin's thread since this technically isn't CAPP...
|
This space not for rent...
|
|
|
|