Bitcoin Forum
June 17, 2024, 10:14:01 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 »
61  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANNOUNCING]Sauron Rings (SAU) | Show your support for Sauron! | PoW | Rare! on: September 11, 2013, 01:11:53 AM
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 0.001 * COIN;
    
    if(nHeight == 3)  
    {
        nSubsidy = 10 * COIN;
    }
    return nSubsidy + nFees;
}

Except for the pre-mine, coin production will be constant and infinite. Not capped as stated in the specs.



Wow!  If there are no coin caps then the premine is 0%...  Cheesy  Thanks for the info!
I remember putting in 20,000 in main.h though...

The MAX_MONEY constant in main.h doesn't limit coin production.


then how do you limit it?

r3wt:
Code:
    if(nHeight == $block you want to end at)  
    {
        nSubsidy = 0 * COIN;
    }

Like smeagol said, you have to change GetBlockValue to return 0 (+ Fees) at some stage, either by halving reward, or just abruptly making it 0, or whatever method you choose.


negative.
Code:
 if(nHeight == $blocknumber) {nSubsidy = 0 * COIN;}
is a conditional statement for only one block. the block following it will have the same amount of coins as whatever your else statement is, such as

Code:
else {nSubsidy = 1 * COIN;}

Yes, that should be if (nHeight > block#)

62  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANNOUNCING]Sauron Rings (SAU) | Show your support for Sauron! | PoW | Rare! on: September 11, 2013, 12:31:40 AM
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 0.001 * COIN;
    
    if(nHeight == 3)  
    {
        nSubsidy = 10 * COIN;
    }
    return nSubsidy + nFees;
}

Except for the pre-mine, coin production will be constant and infinite. Not capped as stated in the specs.



Wow!  If there are no coin caps then the premine is 0%...  Cheesy  Thanks for the info!
I remember putting in 20,000 in main.h though...

The MAX_MONEY constant in main.h doesn't limit coin production.


then how do you limit it?

r3wt:
Code:
    if(nHeight == $block you want to end at)  
    {
        nSubsidy = 0 * COIN;
    }

Like smeagol said, you have to change GetBlockValue to return 0 (+ Fees) at some stage, either by halving reward, or just abruptly making it 0, or whatever method you choose.
63  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANNOUNCING]Sauron Rings (SAU) | Show your support for Sauron! | PoW | Rare! on: September 11, 2013, 12:02:06 AM
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 0.001 * COIN;
    
    if(nHeight == 3)  
    {
        nSubsidy = 10 * COIN;
    }
    return nSubsidy + nFees;
}

Except for the pre-mine, coin production will be constant and infinite. Not capped as stated in the specs.



Wow!  If there are no coin caps then the premine is 0%...  Cheesy  Thanks for the info!
I remember putting in 20,000 in main.h though...

The MAX_MONEY constant in main.h doesn't limit coin production.
64  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANNOUNCING]Sauron Rings (SAU) | Show your support for Sauron! | PoW | Rare! on: September 10, 2013, 11:43:57 PM
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 0.001 * COIN;
   
    if(nHeight == 3) 
    {
        nSubsidy = 10 * COIN;
    }
    return nSubsidy + nFees;
}

Except for the pre-mine, coin production will be constant and infinite. Not capped as stated in the specs.

65  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANN] Bitcoin - Scrypt Version - ASIC Resistant on: September 08, 2013, 10:53:42 AM
Code:
        // Genesis block
        const char* pszTimestamp = "The time a Bitcoin ASIC proof Client Was Created";

It's about time someone created a Scrypt coin Tongue
66  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [ANN][RFC] Logo contest for Riecoin - new prime numbers proof-of-work on: September 05, 2013, 05:31:31 PM
Thank you all for your interest and your submissions.
Since Zetacoin already uses the lower-case zeta, I'd rather you avoid using that letter, or use it in a more subtle way, I edited the OP to include this.
Sorry I didn't realize this before... I liked ilostcoins' squared versions though...  let's see where this goes, I'm surprised by how fast the first designs were posted!

sharky444: I plan to release one or two weeks after this contest is finished, and I'll use this forum for announcement (a few days before release, on a new thread and this thread too) and main communication channel. Additionally I might announce release date on other forums too in order to reach more people.

Regards,
gatra

Thanks gatra! Best of luck with Riecoin.
67  Alternate cryptocurrencies / Marketplace (Altcoins) / Re: [ANN][RFC] Logo contest for Riecoin - new prime numbers proof-of-work on: September 05, 2013, 05:19:16 AM
FYI, there's already a coin called Zeta coin that uses Zeta as its logo.
68  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 31, 2013, 11:34:48 PM
Do Window binaries need updating?

Windows binaries are still on the previous checkpoint. They'll be updated in due time.
69  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 31, 2013, 10:03:26 PM
Github source updated with a new checkpoint at block 103010.

This strengthens the security of the block-chain by essentially locking all transactions up to block 103010.
70  Alternate cryptocurrencies / Altcoin Discussion / Re: ZET has a bug? on: August 31, 2013, 08:27:34 PM
This is true for all coins out there. You are allowed to mine a block with less reward than allowed.

For example, if the block reward is 500 ZET, nothing stops you from only claiming only 50 ZET reward for solving the block.
71  Alternate cryptocurrencies / Altcoin Discussion / Re: [ZET] 1k free ZET on: August 29, 2013, 09:50:00 PM

Sent 200 ZET to each (Wormbog didn't post his address).


In case it's not too late...

ZUbtHm3x2yvbAanzRbgNyGs8ZXvgoWEp7W

I posted the address in my first set of suggestions, but didn't paste it into the later ones.

Thanks. Sent 200 ZET.
72  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 29, 2013, 06:10:44 PM
Giskard, i've upload and rescaled the images as we said by PM. And i've updated the info.
Hope you like.

Thanks! I updated the first post. Looks great. If the images had transparency that would be even better I think.
73  Alternate cryptocurrencies / Altcoin Discussion / Re: [ZET] 1k free ZET on: August 29, 2013, 08:03:24 AM
Hi

Thanks for all the witty comments. Personally I liked these, some funny, some serious:

Moving at the Speed of ZetaCoin (i3lome)
Zetacoin "hearts" SHA-256 (Hippie Tech)
It's Betta with Zeta! (Space Cadet)
Your daily dose of vitamin Zeta (jubjub)
Because My Time-Traveling Uncle Says Everyone Will Be Using It In 2035 (Wormbog)

Sent 200 ZET to each (Wormbog didn't post his address).

Cheers
74  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 26, 2013, 05:18:51 AM
Congratulations to the Zetacoin community on making it onto Cryptsy!

Hopefully this is just the beginning of a great things to come.
75  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 25, 2013, 05:45:37 PM
I remember to community from the OP First Reply :


Rewards

25,000 ZET for services that use Zetacoin.


At current Market Values is a 0.15 BTC reward
25k ZET for faucet?  Cheesy

Let me change that to "Up to 25,000 ZET" Smiley

how much do i get for adding it to my block explorer? Tongue

10K. Send/Post your addy.
76  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 25, 2013, 12:17:56 PM
I remember to community from the OP First Reply :


Rewards

25,000 ZET for services that use Zetacoin.


At current Market Values is a 0.15 BTC reward
25k ZET for faucet?  Cheesy

Let me change that to "Up to 25,000 ZET" Smiley
77  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 25, 2013, 07:10:49 AM
I am surprised there is only one pool. I know that scrypt pools rule, but I would have thought a couple more would have sprung up. I guess because ZET is only on a beta exchange (which isn't working atm) that people wont take it seriously until it hits Cryptsy.


there is a pool at CoinEX: https://coinex.pw/mining/pools/ZET
you can mine ZET straight into your exchange balance Wink
wondering why it wasn't added to the OP yet, mentioned it quite a while ago as it runs for like a week already.

Thanks erundook. OP updated.
78  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 23, 2013, 08:35:25 PM
Congratulations on reaching the first reward halving!

Source code and Windows binary updated with new checkpoint.

Download link in first post updated.
79  Alternate cryptocurrencies / Altcoin Discussion / Re: [ADT - Androids Token] - Big Giveaway from German Community on: August 23, 2013, 09:05:30 AM
wcRaVMmuvhGPoDCeTv1VzaLVTHmyM8xEt

Smiley
80  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ZET] Zetacoin - SHA256 coin - Pools up - Quick confirmations on: August 22, 2013, 08:45:17 AM
difficulty 149? what up?

One of the pools is down. Mine while the diff is low Wink
Pages: « 1 2 3 [4] 5 6 7 8 9 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!