Bitcoin Forum
May 24, 2024, 10:48:53 AM *
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 »
21  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 05, 2015, 12:05:42 AM
Is it difficult to setup masternode?

No.. If you've got the coins, i'll help you get one setup. For tips or percentage of the profits. Whichever

sharp guy lol
22  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 05, 2015, 12:01:19 AM
If anyone is interested in buying a masternode please let me know. Serious offers only.

*Will check offers in around 9 hours after I wake up.
23  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace] on: May 04, 2015, 10:47:40 PM
need this on a exchange

I'd rather mine some more cheap coins first  Wink
24  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace] on: May 04, 2015, 10:30:27 PM
Seems like 35-40% of the new blocks now are PoS.
25  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 04, 2015, 10:21:50 PM
Is it difficult to setup masternode?
26  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 04, 2015, 08:22:42 PM
Stuck at 180?
27  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 04, 2015, 07:16:25 PM
Can't get any connections in wallet. Any nodes?

addnode=153.92.96.5:27879

What would be the name of conf file?

goat.conf :-)

Ocminer, I can't beleive this. I said to you many times, that nicehash don't work on supernova. I will make a printscreen now.

It is currently the same with all pools. Its not related/fixed to suprnova, your Order at nicehash will start eventually and stay stable.

When you go over 2 Gh-ish the order dies b/c of too low diff. (on scrypt that is)
28  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [Ninja][Launched] Goat [IGoat][HerdNodes][DPoS] on: May 04, 2015, 07:00:29 PM
Graviton clone?
29  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace] on: May 03, 2015, 09:47:20 PM
need this on a exchange i need to trade it to increase my stash

Just mine  Cool
30  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace] on: May 03, 2015, 04:52:10 PM
Staking going really nice. Around 15% of the blocks are PoS right now.
31  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE]Ultimate Coin [POS Masternodes][Loyalty Nodes][Ultimate Marketplace] on: May 03, 2015, 02:42:29 PM
I can't get any active connections in wallet, any nodes?

addnode=5.196.10.57
32  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 03, 2015, 11:40:34 AM
How many coins for masternode?
33  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 02, 2015, 11:02:44 PM
Market cap target to mine profitable is so low right now Smiley Mining cost is below 2k sat (or 8BTC market cap) atm.
34  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]-[XFOCUS]-Focus Trading fund-[1M Shares]-[Weekly BTC dividend] on: May 02, 2015, 09:37:05 PM
Lol, if your system was half as good as you claim it is you would have way more than the 5 BTC to put in the pool yourselves.
35  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 02, 2015, 07:09:44 PM
Yeah I agree the premine is big in today's standards. Probably why more pools aren't jumping aboard.  Dev you might want to think about burning some of the premine, posting plans, etc. and the coin might just take off.

I agree
36  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][GRAV] Graviton SHA256 Dynamic POS Gravitator Nodes NINJA on: May 02, 2015, 05:11:41 PM
So right now 1 gravitator node is getting half of all pos blocks??  wtf?

How many coins do you need for that?
37  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 02, 2015, 01:57:11 PM
Where in the code can I find that it'll no longer accept PoW blocks after block 7860?


https://github.com/Ultimatecoinn/Ultimateeee/blob/master/src/main.h#L30

thanks
38  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 02, 2015, 01:37:27 PM
Where in the code can I find that it'll no longer accept PoW blocks after block 7860?
39  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [UTLE] Ultimate Coin on: May 02, 2015, 01:30:08 PM
Code:
// miner's coin base reward
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 50 * COIN;
   
    if (pindexBest->nHeight+1 == 1)
    {
      nSubsidy = 12000 * COIN;
      return nSubsidy + nFees;
    }
   
    else if (pindexBest->nHeight+1 <= 100)
    {
      nSubsidy = 0 * COIN;
      return nSubsidy + nFees;
    }
   
    else
    {
      nSubsidy = 50 * COIN;
      return nSubsidy + nFees;
    }
   

    if (fDebug && GetBoolArg("-printcreation"))
        printf("GetProofOfWorkReward() : create=%s nSubsidy=%"PRId64"\n", FormatMoney(nSubsidy).c_str(), nSubsidy);

    return nSubsidy + nFees;
}

According to the source it seems like PoW never stops....
40  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] ChronoSphere [SPHR] [NINJA] [Wallet Update] on: April 30, 2015, 09:23:06 PM
I think I figured the block rewards out. At block 3600 it will be around 14.70 according to my calculations. Is this correct?
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!