Bitcoin Forum
April 25, 2024, 09:45:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: How many BottleCaps do you own?
None - 86 (39.1%)
1-1k - 30 (13.6%)
1k-10k - 28 (12.7%)
More than 10k - 76 (34.5%)
Total Voters: 220

Pages: « 1 ... 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 [188] 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 »
  Print  
Author Topic: Bottlecaps 2.1 UPDATE REQUIRED - HARDFORK JULY 4 2014 to 200% Annual PoS  (Read 388604 times)
CrazyLoaf
Hero Member
*****
Offline Offline

Activity: 763
Merit: 534



View Profile
December 13, 2017, 10:21:34 AM
 #3741

So is this coin still doing the weird-ass CAPP alternative coin or will main CAP chain remain alive and active?
1714038331
Hero Member
*
Offline Offline

Posts: 1714038331

View Profile Personal Message (Offline)

Ignore
1714038331
Reply with quote  #2

1714038331
Report to moderator
1714038331
Hero Member
*
Offline Offline

Posts: 1714038331

View Profile Personal Message (Offline)

Ignore
1714038331
Reply with quote  #2

1714038331
Report to moderator
1714038331
Hero Member
*
Offline Offline

Posts: 1714038331

View Profile Personal Message (Offline)

Ignore
1714038331
Reply with quote  #2

1714038331
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714038331
Hero Member
*
Offline Offline

Posts: 1714038331

View Profile Personal Message (Offline)

Ignore
1714038331
Reply with quote  #2

1714038331
Report to moderator
vancefox
Legendary
*
Offline Offline

Activity: 1033
Merit: 1005



View Profile
December 14, 2017, 12:36:17 AM
 #3742

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 Offline

Activity: 912
Merit: 1000



View Profile
December 14, 2017, 04:28:49 AM
 #3743

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
Hero Member
*****
Offline Offline

Activity: 2632
Merit: 550


View Profile WWW
December 14, 2017, 04:40:51 AM
 #3744

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 Offline

Activity: 1033
Merit: 1005



View Profile
December 14, 2017, 05:14:16 AM
 #3745

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 Offline

Activity: 227
Merit: 26

“BitCloud [BTDX]”


View Profile
December 14, 2017, 07:42:34 AM
 #3746

Looks good  Smiley 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
Code:
static const int RECOVER_DBLSP_HEIGHT_TESTNET = 1180; // DoubleSpend Fix Testnet.
static const int RECOVER_DBLSP_HEIGHT = 5554600; // DoubleSpend Fix MainNet


main.cpp
Code:
...
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;

...

Code:
...
// 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"));
    }
...




•••     BitCloud  BTDX    |    A new type of decentralized currency     •••
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬     Masternode Coin     ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
• Wallet  • ANN  • Blockexplorer  • Github
Tranz
Legendary
*
Offline Offline

Activity: 1540
Merit: 1052


May the force bit with you.


View Profile
December 14, 2017, 12:55:06 PM
 #3747

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.

HBN: https://bitcointalk.org/index.php?topic=303749.0 hobonickels.info
Personal Donations: F1TranzWqFGZyFeTMu6iLbtTQgdXuJPsiL
Donations to the HBN Fund: EhbNfund4PrRFLHMxsnbGLhP25hizJGHEE or 1LVFtCX4a83dMLjd8S7imKKKC58QaG83kw
Turrican
Member
**
Offline Offline

Activity: 227
Merit: 26

“BitCloud [BTDX]”


View Profile
December 15, 2017, 10:39:45 AM
 #3748

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  Smiley i think fTestNet ist only for the Testnet  Cheesy

•••     BitCloud  BTDX    |    A new type of decentralized currency     •••
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬     Masternode Coin     ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
• Wallet  • ANN  • Blockexplorer  • Github
Tranz
Legendary
*
Offline Offline

Activity: 1540
Merit: 1052


May the force bit with you.


View Profile
December 16, 2017, 10:36:18 PM
 #3749

Ok put to github for review.

https://github.com/Tranz5/bottlecaps/commit/037a0308beaef137b61ac6ca217113a597d7c7b8

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

HBN: https://bitcointalk.org/index.php?topic=303749.0 hobonickels.info
Personal Donations: F1TranzWqFGZyFeTMu6iLbtTQgdXuJPsiL
Donations to the HBN Fund: EhbNfund4PrRFLHMxsnbGLhP25hizJGHEE or 1LVFtCX4a83dMLjd8S7imKKKC58QaG83kw
vampirus
Hero Member
*****
Offline Offline

Activity: 982
Merit: 517


Nature decays, but Latinum lasts forever. RoA:102


View Profile
December 17, 2017, 06:15:53 AM
 #3750

Do you want generate 55M coins? How much Cryptopia lost?

  SCIFIKEDGPLCAPS
gsambolin
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 01:50:55 PM
 #3751

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 Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 02:04:36 PM
 #3752

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 Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 02:22:38 PM
 #3753

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
Hero Member
*****
Offline Offline

Activity: 982
Merit: 517


Nature decays, but Latinum lasts forever. RoA:102


View Profile
December 17, 2017, 04:49:02 PM
 #3754

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.

  SCIFIKEDGPLCAPS
gsambolin
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 06:07:12 PM
 #3755

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 Offline

Activity: 1033
Merit: 1005



View Profile
December 17, 2017, 06:24:12 PM
 #3756

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 Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 06:33:31 PM
 #3757

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.
vancefox
Legendary
*
Offline Offline

Activity: 1033
Merit: 1005



View Profile
December 17, 2017, 06:35:29 PM
 #3758

2. Where do I find the new CAPP wallet?  Is it live or still under test?

https://bitcointalk.org/index.php?topic=2329756.0

This space not for rent...
gsambolin
Newbie
*
Offline Offline

Activity: 78
Merit: 0


View Profile
December 17, 2017, 08:38:17 PM
 #3759

2. Where do I find the new CAPP wallet?  Is it live or still under test?

https://bitcointalk.org/index.php?topic=2329756.0

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 Offline

Activity: 1033
Merit: 1005



View Profile
December 18, 2017, 04:32:01 AM
 #3760

2. Where do I find the new CAPP wallet?  Is it live or still under test?

https://bitcointalk.org/index.php?topic=2329756.0

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...
Pages: « 1 ... 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 [188] 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 »
  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!