Bitcoin Forum
June 28, 2024, 03:23:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 [290] 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 ... 513 »
5781  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 05:27:49 PM
Significant changes in the BALLS 2.0.1 Two Stage Hard Fork:
  • Protocol has been switched back
  • Blocks will return to their previous speed
  • Protocol switch occurs at 1424995200
    • 02/27/2015 @ 12:00am (UTC)

Staking Changes
  • Staking will return to its previous frequency
  • Stake rewards have been updated to be more interesting
    • Now based on block number in a specific, fixed range
  • A few features or changes have been cut to prevent a coin swap to a new chain
  • Stake rewards start fluctuating at Block 200,000


Stake Reward Structure in its entirety is as follows:

Code:
int64 GetProofOfStakeRewardYear(int nHeight) {
    static int64 nBaseCoinYear = 5000 * CENT;
    static int64 nMaxPercent = 20000;
    static int64 nReward = 0;

    if (nHeight <= 80000)
        return nBaseCoinYear;

    if (nHeight <= 85000)
        return nBaseCoinYear + ((nHeight - 80000) * CENT);

    if (nHeight <= 94000)
        return (nBaseCoinYear * 2) - ((nHeight - 85000) * CENT);
    
    if (nHeight < 200000) {
        return 1000 * CENT;
    } else {
        nReward = (nHeight % nMaxPercent);
        if (nReward == 0)
            nReward = nMaxPercent;
printf("Stake percent on block %d is %d\n", nHeight, nReward);
        return nReward * CENT;
    }
}



             


All files changed in 2.0.1 are labeled as such on Github. This is how we will document which version which file changed in
5782  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 05:06:20 PM
At bittrex wallet under maintenance

Richie is upgrading to 2.0.1
5783  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 22, 2015, 04:38:17 PM
Now those of you with casino sigs need to get us added  Wink

It helped a lot with TIX
5784  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: $30,000 raised in proposed BTER recapitalization / profit sharing coin ICO on: February 22, 2015, 03:51:54 PM
All respect lost for everyone involved, both from exchanges and the community in general

You guys have just become that which you came here to eliminate the need for. Terrible decision and poor judgement shown by everyone
5785  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 03:37:29 PM
here we go FRONT PAGE TREX

And nearing the top few on Polo, as well
5786  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: I will pay you $1000 if you can attack MMXIV. You have 33 days. on: February 22, 2015, 02:37:07 PM
I'm OP of this thread.

Too bad I didn't even know about this.

BUT

Quote
$1000 worth of MMXIV

So after killing the coin I will get the coin that I killed?

And who's going to buy me some stakes?

It's not been a secret. You can have discussion threads all you want, but we have a deeper understanding than most people do and are confident no theorycrafting will be successful
5787  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 02:30:42 PM
If a bootstrap download becomes compromised, someone will malicious intent could have assistance disrupting a network by tricking people into using their chain (which wouldn't be noticed until it's too late; won't describe how that works here) to gain momentum for several attack vectors

With very secure downloads, it's fine, but many people post fake links around here and stupid people click them all the time. Starting fresh and verifying each individual block against the checkpoint server and neutral peers is the best way to keep the chain safe. It might take a little longer for users to sync, but I don't care if it means not compromising safety
5788  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 22, 2015, 05:40:15 AM
No problem at all  Wink
5789  Alternate cryptocurrencies / Altcoin Discussion / Re: The Experiment in Price Stability & Discovery Continues. 86k Total MØ on: February 22, 2015, 03:29:16 AM
I think Chicago needs better schools
5790  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 22, 2015, 02:39:09 AM
I seem to be having trouble compiling the daemon in Linux. When I try to compile the file, I get the following error:

/bin/sh ../share/genbuild.sh obj/build.h
../share/genbuild.sh: 33: ../share/genbuild.sh: cannot create obj/build.h: Directory nonexistent
../share/genbuild.sh: 34: ../share/genbuild.sh: cannot create obj/build.h: Directory nonexistent
make: *** [obj/build.h] Error 2

I know that this WILL compile because others have done it. Does anybody have any idea what I'm doing wrong?

Try going into /src/ and creating a new (empty) folder named obj, then try again

That did the trick. Thank you for your help.

No problem
5791  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 22, 2015, 02:27:12 AM
I seem to be having trouble compiling the daemon in Linux. When I try to compile the file, I get the following error:

/bin/sh ../share/genbuild.sh obj/build.h
../share/genbuild.sh: 33: ../share/genbuild.sh: cannot create obj/build.h: Directory nonexistent
../share/genbuild.sh: 34: ../share/genbuild.sh: cannot create obj/build.h: Directory nonexistent
make: *** [obj/build.h] Error 2

I know that this WILL compile because others have done it. Does anybody have any idea what I'm doing wrong?

Try going into /src/ and creating a new (empty) folder named obj, then try again
5792  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 02:05:01 AM
Is there a bootstrap.dat available to download???

Thanks!




Hmmm..   so is / or will there be one?

No
5793  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: I will pay you $1000 if you can attack MMXIV. You have 33 days. on: February 22, 2015, 01:08:46 AM
Tomorrow is the last day to claim the bounty
5794  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 22, 2015, 12:19:29 AM
Confirmations 0 / 6 within an hour Huh

From more 2 hours ago I sent balls and now Confirmations is 0 / 6. What happend?
@iGotSpots please explain what happend in this situations? Thx!

Nothing happened. That's the problem. You stacked your coins on top of everyone else's to sell and they got stuck during slow blocks because of too many people moving coins before the new fork. Now you gotta wait out a bad decision

4 hours ago I sent balls and now Confirmations is 0 / 6. Bad, bad, bad

I give up. Broken record and all that
5795  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 22, 2015, 12:18:51 AM
I would be surprised if Polo added 10k anytime soon. I think they're trying to prove a point for me to be nicer in the chatbox first lol

IGotSpots you not in good standing with Poloniex
either? I thought it was cryptsy exchange you wasnt
seeing eye to eye with.

i wish you the best at settling the minor issues
you currently have with them.

With those 2 exchanges1oK adoption rate could
be sped up much quicker and the project can began
to grow and prosper.

I appreciate you for being very active on the threads as
investors find it comforting and it helps by instilling
confidence in the market.

P2P360

No, I'm cool with Poloniex. There's just no other reason it's not on there, so that must be it
5796  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 21, 2015, 10:26:21 PM
How do you mean before new fork, I am under impression coins moved from Polo to Trex after the fork and coins stuck now.

You think a fork happens immediately when you download a new client?
5797  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Experiment 10k | Cloud Staking | High Liquidity | GorillaStake.com on: February 21, 2015, 10:06:42 PM
I would be surprised if Polo added 10k anytime soon. I think they're trying to prove a point for me to be nicer in the chatbox first lol
5798  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 21, 2015, 09:59:40 PM
Confirmations 0 / 6 within an hour Huh

From more 2 hours ago I sent balls and now Confirmations is 0 / 6. What happend?
@iGotSpots please explain what happend in this situations? Thx!

Nothing happened. That's the problem. You stacked your coins on top of everyone else's to sell and they got stuck during slow blocks because of too many people moving coins before the new fork. Now you gotta wait out a bad decision
5799  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 21, 2015, 09:46:23 PM
if admin balls  in here
please proceess my adrress balls me

SjJaTXiXFceA9D1Hr38A2FvLHKcr8o2bfK

Ok, uh...processed?
5800  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Snowballs | Hard Fork to BALLS 2.0.1 | Update Clients Immediately on: February 21, 2015, 09:45:56 PM
are we still doing Balls swap from old wallet to new one?

Or no need?

No need, just download the new client. That's it, make sure you are on 2.0.1
Pages: « 1 ... 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 [290] 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 ... 513 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!