Bitcoin Forum
November 03, 2024, 04:11:32 AM *
News: Latest Bitcoin Core release: 28.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 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 ... 513 »
3041  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [GBLS] GorillaBalloons | Scrypt | PoW | 282,000 Coins | Will the Gorilla Fly ? | on: August 15, 2015, 05:17:25 PM
Also, no source. I would say this is going to compromise your system
3042  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [GBLS] GorillaBalloons | Scrypt | PoW | 282,000 Coins | Will the Gorilla Fly ? | on: August 15, 2015, 05:15:17 PM
This is what jealousy looks like
3043  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 07:12:20 AM
It's called fixing
3044  Alternate cryptocurrencies / Altcoin Discussion / Re: Cloning a coin the easy way in about twenty minutes on: August 15, 2015, 06:42:33 AM
So I heard you want your own altcoin but keep getting stuck or confused. Skip the hard steps and do it the easy way  Wink

If I missed a step or two, I'll put up a new one with that step included and edit this post

http://pastebin.com/iL9DeTTS

Enjoy!

how much did you pay for this account?

So spots sold his account? I wonder what new sock-puppet account(s) he is going to reappear under.

You remind me of the fat girl from high school that would go spread rumors about everyone you hated. There's plenty of threads to talk shit about me in; please leave this one clean for people to learn in
3045  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 06:01:38 AM
There are only like 4000 blocks after the bootstrap, it should take like 3 minutes to sync
3046  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 05:40:00 AM
I resynced up from scratch with the new wallet and made sure it is on the right chain yet the client constantly goes unresponsive, this problem never happened on the old wallet and reminds me of the ECASH problems since the exact same thing is happening...

Blocks are moving too quickly and when opening the client back up it starts syncing up again and staking before it is in sync.

Use the bootstrap
3047  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 05:20:36 AM
addnode=104.200.154.14
addnode=75.130.163.51
addnode=82.44.30.10
addnode=89.67.49.189
addnode=2.50.95.216
addnode=66.222.226.245
addnode=193.219.117.63
addnode=188.165.167.97
addnode=89.67.49.189
addnode=199.7.156.128
addnode=121.222.228.190
addnode=99.137.226.94
addnode=81.227.243.16
addnode=76.26.93.255
addnode=82.211.30.147


BAD - 74.120.220.54
BAD - 95.183.48.39
BAD - 83.151.2.66
BAD - 188.166.112.232
BAD - 199.193.80.86
BAD - 76.236.82.186
BAD - 92.75.173.47



If you see your IP on the BAD list, that means you haven't updated, yet
3048  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 04:51:51 AM
Ok, so for anyone curious, here is the code for the new reward calculations:




int64 GetProofOfStakeReward(int64 nCoinAge, int nHeight)
{
   int64 nSubsidy = (nHeight - (nHeight + (nHeight % 10))) * COIN;
   int64 nAttempt = 2;
   int64 nCandidate = (nCoinAge * nHeight);
   double nResult = 1;

    if (nHeight > 101000) {
   do {
   nResult = (nCandidate / nAttempt);
   if (floor(nResult) == nResult) {
      nSubsidy = 10 * COIN;       
      return nSubsidy;
   } else {
      nAttempt = (nAttempt + 1);
   }
   } while (nAttempt < nCandidate);
      nSubsidy = 10000 * COIN;
   return nSubsidy;
   } else {
   if ((nHeight % 2) < 1)
    {
        nSubsidy = ((nHeight % 100) + 1) * COIN;
    }
   }
    return nSubsidy;
}



It will take coinage * block number and check to see if that result is a prime number. The way it checks is by using nAttempt to divide nCandidate by every number between 2 and (nCandidate - 1). If the result is an integer, that means nCandidate is divisible evenly by nAttempt, and not a prime, as prime numbers are only divisible evenly by itself and 1

A recent example of a number checked for primality was 20,197,337,050, which was not a prime number and generated 10 NEG as reward. If a number is found to be a prime number, the reward for that block will be 10,000 NEG
3049  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 01:48:55 AM
cmon man, sharing is good karma.

Looks like the exploited wallets will get 10,000 coins in this one, compared to the sucker wallets getting only 10

wowsers, you've really stepped it up.

The odds of getting it lined up are astronomical
3050  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 15, 2015, 01:10:32 AM
I have never used or had a wallet other than the ones I've posted for public use, for any of my coins
3051  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | HARD FORK | Bonuses for discovering Prime Numbers | on: August 14, 2015, 10:32:13 PM
Bootstrap for the blockchain can be found here: https://drive.google.com/file/d/0B9tCHKMNZjyYTTZ3bm5IcTkxZDA
3052  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 07:56:01 PM

Negativity is infectious
Current Version: 5.0.0.0


UPDATE IMMEDIATELY
Resync your blockchain from the beginning
-Close all open Negativity wallets and clients
-Make copies of wallet.dat and Negativity.conf
-Remove all other files and folders in /Roaming/Negativity
-Reload wallet and allow syncing from the beginning
* Can reindex if you prefer, but I suggest against it *


I will explain all the changes shortly
For now, just get on the new version

All you need to know right away is that base rewards are now 10 NEG per block
There are blocks that reward 10,000 coins each, and I will go into detail on this later

Just so you guys know, any stakes you are currently getting will be invalid on this new chain, so you should probably update.. like, right now
3053  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 07:11:01 PM

Negativity is infectious
Current Version: 5.0.0.0


UPDATE IMMEDIATELY
Resync your blockchain from the beginning
-Close all open Negativity wallets and clients
-Make copies of wallet.dat and Negativity.conf
-Remove all other files and folders in /Roaming/Negativity
-Reload wallet and allow syncing from the beginning
* Can reindex if you prefer, but I suggest against it *


I will explain all the changes shortly
For now, just get on the new version

All you need to know right away is that base rewards are now 10 NEG per block
There are blocks that reward 10,000 coins each, and I will go into detail on this later
3054  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 09:51:58 AM
I'm really not as upset or frustrated as you think I am
3055  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 09:24:49 AM
I only wanted to keep the odd and even. I'll just use a different theme
3056  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 09:23:41 AM
Ok, so then we'll just do a different way lol

Thanks again for pointing out my experience owning companies in several industries
3057  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Eclipse | Releasing Tonight | ECP | LikeABoss! | Masternodes | Roadmap on: August 14, 2015, 09:07:18 AM
Like a boss  Wink
3058  Alternate cryptocurrencies / Altcoin Discussion / Re: Cloning a coin the easy way in about twenty minutes on: August 14, 2015, 07:18:28 AM
I see this guide has already been put to use at least once already  Wink
3059  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Negativity | POSITIVE/NEGATIVE STAKING | So you wanna be a Negative Nancy? on: August 14, 2015, 06:29:04 AM
Ok, whoever is stalling the blockchain, it would be cool if you just tell me how to fix it without changing the fundamentals; odd/even or similar needs to happen, or I'm not going to bother forking it to fix it. I know what you're doing, but I don't know how to change it without losing that, so if it's not possible, then have fun on a dead chain. Instead of fucking around, since I posted  that guide now, why don't you play nice for once so there aren't a lot of shitty clones running around

My point was to see more coins get launched, but I'm not trying to tell people how to launch vulnerable shit. The whole point of open source is to help, not harm, one another, so stop being a fuckin wank job and do something productive
3060  Other / Archival / Re: [ANN] Coyote Wall St revealed to be scammer behind Mike Tyson Coin (TysonCoin) on: August 14, 2015, 05:42:25 AM
Iron Mike is the kind of dude that will actually show up at your door and jack you in the jaw

Even I wouldn't have made that coin without his permission. Although, I think Mike Tyson and I are a perfect fit together business-wise, so hit me up homie!
Pages: « 1 ... 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 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 ... 513 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!