Bitcoin Forum
May 23, 2024, 04:21:56 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 ... 118 »
561  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL release is now!!! on: July 14, 2013, 11:21:52 PM
If you are still having connection problems, remove the RPC port and port lines from the .CONF. They are wrong, Client will use default ports
562  Alternate cryptocurrencies / Announcements (Altcoins) / Re: GRAND COIN - 1 GRAND PER BLOCK and SUPER BLOCKS released TODAY 13/07/13 on: July 14, 2013, 11:00:32 PM
Quote
NO PREMINE!!

The ammount you insta-mined, with those retarded block rewards, who needs a premine? There's something to be said for transparency. Good luck
563  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL release is now!!! on: July 14, 2013, 10:39:35 PM
added new node, if you are having connection problems
564  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 08:13:18 PM
Making it rain, GIL. Coins sent Wink
565  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 08:05:54 PM
I have emailed the pool operator, and messaged him on here. Hoping he'll atleast have a log to send me or something
566  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 08:01:41 PM
7N6Ht9K4TCeteZxKA4tksXiRJdDGtfCwrJ


still hoping for the bountyblocks  Grin

Me too man, me too.

Coins sent
567  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 07:58:23 PM
I'll give everyone in the pool 100 GIL for trying

And the 100 GIL?  Grin

Everyone in the pool, post your wallet address, I'll pay it out now, but I'll bump it up to 200
568  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 07:52:58 PM
I will figure out a way, to pay out bounties fairly, once it comes up
569  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL release July 14, 11:00am Eastern time (GMT -5) on: July 14, 2013, 07:29:33 PM

My coin has niether large block rewards, or super blocks, so....


Blocks start at 1 and 2 and then jump to 10-50. By definition the super blocks are the 50's, and the normal blocks are 10. Is there a metric on how the blocks are determined to be random? If not how can you truly predict how much will be in existence <Max coins, 180,000,000>?

Because the coin will stop producing coins at ~180,000,000. The only uncertainty, is how long it will take to reach 180,000,000 coins, do to the random block rewards. The client generates a random number, for each block, then if it falls within a range of certain numbers, that determines the block reward, for that block.
It's all in the code;

Code:
int64 nSubsidy = 0 * COIN;

        std::string cseed_str = prevHash.ToString().substr(8,7);
const char* cseed = cseed_str.c_str();
long seed = hex2long(cseed);

        int rand = generateMTRandom(seed, 400000);

        if(rand < 10000)
nSubsidy = 10 * COIN;
else if(rand < 20000)
nSubsidy = 11 * COIN;
else if(rand < 30000)
nSubsidy = 12 * COIN;
else if(rand < 40000)
nSubsidy = 13 * COIN;
else if(rand < 50000)
nSubsidy = 14 * COIN;
        else if(rand < 60000)
nSubsidy = 15 * COIN;
else if(rand < 70000)
nSubsidy = 16 * COIN;
else if(rand < 80000)
nSubsidy = 17 * COIN;
else if(rand < 90000)
nSubsidy = 18 * COIN;
        else if(rand < 100000)
nSubsidy = 19 * COIN;
else if(rand < 110000)
nSubsidy = 20 * COIN;
        else if(rand < 120000)
nSubsidy = 21 * COIN;
else if(rand < 130000)
nSubsidy = 22 * COIN;
else if(rand < 140000)
nSubsidy = 23 * COIN;
else if(rand < 150000)
nSubsidy = 24 * COIN;
        else if(rand < 160000)
nSubsidy = 25 * COIN;
else if(rand < 170000)
nSubsidy = 26 * COIN;
else if(rand < 180000)
nSubsidy = 27 * COIN;
else if(rand < 190000)
nSubsidy = 28 * COIN;
        else if(rand < 200000)
nSubsidy = 29 * COIN;
else if(rand < 210000)
nSubsidy = 30 * COIN;
        else if(rand < 220000)
nSubsidy = 31 * COIN;
else if(rand < 230000)
nSubsidy = 32 * COIN;
else if(rand < 240000)
nSubsidy = 33 * COIN;
else if(rand < 250000)
nSubsidy = 34 * COIN;
else if(rand < 260000)
nSubsidy = 35 * COIN;
        else if(rand < 270000)
nSubsidy = 36 * COIN;
else if(rand < 280000)
nSubsidy = 37 * COIN;
else if(rand < 290000)
nSubsidy = 38 * COIN;
else if(rand < 300000)
nSubsidy = 39 * COIN;
        else if(rand < 310000)
nSubsidy = 40 * COIN;
else if(rand < 320000)
nSubsidy = 41 * COIN;
        else if(rand < 330000)
nSubsidy = 42 * COIN;
else if(rand < 340000)
nSubsidy = 43 * COIN;
else if(rand < 350000)
nSubsidy = 44 * COIN;
else if(rand < 360000)
nSubsidy = 45 * COIN;
        else if(rand < 370000)
nSubsidy = 46 * COIN;
else if(rand < 380000)
nSubsidy = 47 * COIN;
else if(rand < 390000)
nSubsidy = 48 * COIN;
else if(rand < 400000)
nSubsidy = 49 * COIN;
        else if(rand < 410001)
nSubsidy = 50 * COIN;

   if(nHeight == 2)
nSubsidy = 300000 * COIN;
else if(nHeight < 1000)
nSubsidy = 0 * COIN;
else if(nHeight < 2000)
nSubsidy = 1 * COIN;
else if(nHeight < 3000)
nSubsidy = 2 * COIN;

The starting blocks, of 1, 2 ,3, were merely to give people time to setup and to allow difficulty to increase, preventing any 1 person, from insta mining thousands of coins, while everyone else recieved nothing but orphans, and, its working, exactly as intended. You can't please everyone.

There are no super-blocks, the block reward was designed this way, to add variety, and make the coin fun to mine. Everyone has equal opportunity here, it's not favoring anyone.
570  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] GIL release is now!!! on: July 14, 2013, 07:24:53 PM
Congrats on securing the rights from Square Enix, how did you manage that?

Same way CAP secured rights from Bethesda. Square Enix does not own a trademark for GIL. Now, If I had named it Final Fantasy coin, that would be a different story.
Please, do a little research, before commenting, that's all I ask
571  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 06:59:34 PM
You paid 20k for this pool!?  Grin

10K so far....
572  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 06:48:27 PM
Sent
573  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 06:46:50 PM
Has anyone received any paid shares yet? Turned off my miner till pool is confirmed as functional.

Not yet. Guy runs a few other pools though, as well, working fine. Just a hiccup, I imagine, it'll get sorted
574  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 06:44:24 PM
sent
575  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 06:39:53 PM
sent
576  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 06:38:24 PM
I just messaged the pool operator, to see whats up
577  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 06:35:38 PM
Sent
578  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 06:34:10 PM
What if someone finds 3 of 10 first blocks?

Then they get 3K.

Afterwards though, I'll give everyone in the pool 100 GIL for trying
579  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] GIL pool - Stratum Support 1K bounty, for first 10 blocks on: July 14, 2013, 06:32:47 PM
give me 60 more gil and make it an even 100 mr. spartan

7ForeZVwYUAZbAmWqABVVcYYGM6gmocUNN

No thanks, I don't pay people for being assholes
580  Alternate cryptocurrencies / Altcoin Discussion / Re: GIL Giveaway on: July 14, 2013, 06:30:15 PM
sent
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 [29] 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 ... 118 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!