Bitcoin Forum
May 04, 2024, 04:20:40 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 »
621  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][CSO] CSCoin | X13 | PoW + PoS | No Premine | Escrow IPO on: June 26, 2014, 03:34:38 AM
PoW total coins: ~4 Million
No Premine, 15% IPO
...
Total IPO coins: 1.5 Million

IPO share is 37.5% after POW end.

Edit: or 27% if total amount at end of POW is 5.5.

622  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [KTK] Krypt Koin | PoS | 1.5.2.0 | KTK Giveaway | Trade on Bittrex on: June 25, 2014, 05:37:30 PM
Sent 500 KTK to faucet.
623  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 04:53:50 PM
Why this pool http://www.hashharder.com/x15/bitblock, isn't showing correctly my HR?

Pool shows 3.8kh and cpuminer 178Kh  Undecided

Top miner from hashharder has 1.9 MH/s, maybe it has something to do with your problem?
Maybe some stratum problem or other issues allow cheating.

Edit: two first has > 4 MH/s total.
624  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 03:41:38 PM
minerd-corei7.exe -a bitblock --benchmark -o 127.0.0.1:6666 -u Infern0 -p x

This is for solo mine with intel cpu.

...

--benchmark, really? Grin

Fewer competitors - more coins?

Remove --benchmark from you lines, it's for speed test only.
625  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 03:35:01 PM
the cpu miner give some boost vs the wallet? or it is the same, if it is the same what's the point? lol

90 vs 60 kH/s for me, i am using athlon-fx miner what i shared before
626  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 02:40:18 PM
About reward curve and supply cap: same as Darkcoin.
627  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 02:31:38 PM
https://www.dropbox.com/s/hnleulsps90opt9/miner.rar
Miners for core-i7 and athlon-fx.
628  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 01:27:39 PM
@Shadow_Runner

Did you compiled with "native" option?
Native:
"This selects the CPU to generate code for at compilation time by determining the processor type of the compiling machine."

629  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 01:18:54 PM
BitBlock was forked from Darkcoin, as I see. Same tray icon, same reward formula.
630  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 01:11:19 PM
Code:
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

    // printf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy);
    nSubsidy *= COIN;

    // yearly decline of production by 7% per year, projected 21.3M coins max by year 2050.
    for(int i = 210240; i <= nHeight; i += 210240) nSubsidy *= 0.93;

What is that means? Sorry, I'm not a coder.

It's reward calculation. Before block height 5465 is: reward = (1111.0 / (pow((dDiff+1.0), 2.0)));
With current diff (0.01562500) is 500.

EDIT: After 5465 it's lower than 153, after 24000 (or 17000  with diff > 75) < 26 BBL. If I'm not mistaken.
631  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 01:07:24 PM
Code:
    if(nHeight >= 5465) {
        if((nHeight >= 17000 && dDiff > 75) || nHeight >= 24000) { // GPU/ASIC difficulty calc
            // 2222222/(((x+2600)/9)^2)
            nSubsidy = (2222222.0 / (pow((dDiff+2600.0)/9.0,2.0)));
            if (nSubsidy > 25) nSubsidy = 25;
            if (nSubsidy < 5) nSubsidy = 5;
        } else { // CPU mining calc
            nSubsidy = (11111.0 / (pow((dDiff+51.0)/6.0,2.0)));
            if (nSubsidy > 500) nSubsidy = 500;
            if (nSubsidy < 25) nSubsidy = 25;
        }
    } else {
        nSubsidy = (1111.0 / (pow((dDiff+1.0),2.0)));
        if (nSubsidy > 500) nSubsidy = 500;
        if (nSubsidy < 1) nSubsidy = 1;
    }

    // printf("height %u diff %4.2f reward %i \n", nHeight, dDiff, nSubsidy);
    nSubsidy *= COIN;

    // yearly decline of production by 7% per year, projected 21.3M coins max by year 2050.
    for(int i = 210240; i <= nHeight; i += 210240) nSubsidy *= 0.93;
632  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 12:43:49 PM
There is no insta-mine from the dev team We can assure you that nearly every miner on here at the moment most likely has more coins than the dev team. We did stress tests against the servers for some blocks aside from that, we have very little coins in our own wallets, however We are mining as well right now. Our hashing power is slim to none compared to most the pro miners, however.

Did you mined about 320 blocks from 23 June? It's about 160k BBL.
633  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 12:38:45 PM
is there a premine?

http://explorer.bitblock.ml/chain/BitBlock?hi=19&count=20
634  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 12:34:41 PM
Dev instaminer? Give win miner!

You can mine with the wallet, see the thread.
635  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 12:33:55 PM
...
 
Step 10 says command not found.

Do: cd Bitblock-CPUminer, not cd cpuminer.

I already did this. Anyway ./autogen.sh  line 8: aclocal: command not found.

devel / automake?
636  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BBL] BitBlock - 15 ROUNDS OF SCIENTIFIC HASHING - LAUNCHED on: June 25, 2014, 12:26:16 PM
...
 
Step 10 says command not found.

Do: cd Bitblock-CPUminer, not cd cpuminer.
637  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XFC] Finercoin丨X11丨POW+POS丨NO premine丨NO ipo丨 on: June 24, 2014, 07:36:23 PM
@Dev

It is better to set a new launch date than to wait here.
638  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][MIN] Minerals - POS. Fair Distribution Cryptocurrency on: June 24, 2014, 07:27:23 PM
Looks like You all guys moved to other exchanges. But thank You for more than 100 BTC volume 2 days ago. What is Your overal opinion about C-CEX.com? Any feedback and suggestions welcomed.

I like your exchange.
A few notes:
1. It's not easy to find the coin on the first page.
As example, the Bittrex has the live search on the first page.
2. Not saved the selected interval of the chart after reloading the page (1h, 6h, 12h, 24h, sometimes i need 1h).
But it's not a big deal. I needed to reload because of note 3.
3. Sometimes (rarely) auto-update freezes (Firefox 27). But I'm not sure at this point. Maybe I have some problem.
4. Android, Opera Classic: scrolling does not work.

639  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XFC] Finercoin丨X11丨POW+POS丨NO premine丨NO ipo丨 on: June 24, 2014, 06:55:42 PM
photoshop ? i can get a better one with PS Smiley

No, GIMP.

Edit:

...
We don't have the launch, this is not true wallet

Hi, Dev! We are waiting for you.
640  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][XFC] Finercoin丨X11丨POW+POS丨NO premine丨NO ipo丨 on: June 24, 2014, 06:49:56 PM
Can't sync.
Anyone can provide nodes?

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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!