Bitcoin Forum
May 06, 2024, 03:29:27 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 »
581  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 13, 2014, 02:26:19 PM
I can't believe this coin is still so under the radar. It needs to be put on Mintpal and Coinmarketcap asap.
582  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 13, 2014, 01:36:11 PM
Coin is back on an upward trend. We will see 40k again this week.
583  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 12, 2014, 01:48:17 AM
AGX seems to be incompetent. Could have sold at 45k satoshis...obvious bubble. Now I'm waiting for my coins to become available and the price is half that.
584  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 11, 2014, 04:38:38 PM
Austin Global Exchange -if they ever do come back on line (they've been down for over 12 hours) don't put your hard earned coins there and whatever you do - don't trade there - it's been an expensive lesson for me - fortunately they're in the U.S. will makes legal proceedings against them possible.

no status messages to any of the account holders there either....

what a bad way to run a a business - I am sure this do them irreperable damage that will be hard to recover from.

and if you do choose to do business there - don't leave any coins in any accounts.

agx.io = bad news

All my naut coins are there...I was about to take them off but they went down. They are supported in the op as the 'official' exchange. They had better come back on soon, or this could ruin the entire coin's credibility

They posted on their twitter account... through all of this. Only BTC was affected, and only 2% of customers, those customers will be e-mailed within 24 hrs (as of 12 hrs ago), and they will more than likely bring it back up.

It is down to prevent further issue, they did straight up damage control as SOON as they were aware of the issue instead of attempting to run under the guise that everything is "Okay". I personally think they've been decently transparent through the whole thing. I do not expect this to be a Gox repeat.

Thanks, I didn't see that. I sure hope so.
585  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 11, 2014, 04:23:37 PM
Austin Global Exchange -if they ever do come back on line (they've been down for over 12 hours) don't put your hard earned coins there and whatever you do - don't trade there - it's been an expensive lesson for me - fortunately they're in the U.S. will makes legal proceedings against them possible.

no status messages to any of the account holders there either....

what a bad way to run a a business - I am sure this do them irreperable damage that will be hard to recover from.

and if you do choose to do business there - don't leave any coins in any accounts.

agx.io = bad news

All my naut coins are there...I was about to take them off but they went down. They are supported in the op as the 'official' exchange. They had better come back on soon, or this could ruin the entire coin's credibility
586  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 11, 2014, 04:21:17 PM
What is going on with agx?Huh
587  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 11, 2014, 12:30:48 PM
I'm getting nervous about agx...I would like my coins!
588  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [NAUT] Nautiluscoin - First Coin w/Stabilization Fund - Digishield on: May 10, 2014, 01:07:12 PM
Bought in yesterday, already making a nice profit. Have high hopes for this coin!  Grin
589  Bitcoin / Development & Technical Discussion / Re: Problem building bitcoin-qt. Missing lib on: May 09, 2014, 03:03:12 PM
Nevermind, I ran it again and it completed successfully. No idea  Huh
590  Bitcoin / Development & Technical Discussion / Problem building bitcoin-qt. Missing lib on: May 09, 2014, 02:48:08 PM
I am following the tutorial here https://bitcointalk.org/index.php?topic=149479.0.
When I go to ./configure bitcoin from mysys, I get an error that says:

checking for main in -lshell32... no
configure: error: lib missing

It seems to be able to find the other libraries, how can I fix this?
591  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BlackCoin (BC) | PoS | No premine | No IPO on: April 28, 2014, 04:01:38 PM
Can someone explain to me how block rewards are calculated in the Blackcoin code? It was 10k BC during PoW.

Taken from main.cpp from github:
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 64 * COIN;

    // Subsidy is cut in half every 840000 blocks, which will occur approximately every 3 years
    nSubsidy >>= (nHeight / 105190); // Blackcoin: 105k blocks in ~3 years

    return nSubsidy + nFees;
}

Why does it claim a block reward of 64 coins initially?


What is the value of that "COIN" variable?

If the reward was 10K then that variable value should be 156.25 (10K / 64)

from util.h:

Code:
static const int64 COIN = 100000000;
or, 1 Blackcoin in satoshis

Are you sure you are checking the right source code?

This is the main.cpp from BlackCoin:

https://github.com/rat4/blackcoin/blob/master/src/main.cpp

You can see there:

Code:
int64_t GetProofOfWorkReward(int64_t nFees)
{
    int64_t nSubsidy = 10000 * COIN;

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

    return nSubsidy + nFees;
}

Nothing with 64... and that method "GetBlockValue" doesn't even exist in the main.cpp

Thanks, I was checking the wrong Blackcoin on github.
592  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BlackCoin (BC) | PoS | No premine | No IPO on: April 28, 2014, 08:10:25 AM
Can someone explain to me how block rewards are calculated in the Blackcoin code? It was 10k BC during PoW.

Taken from main.cpp from github:
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 64 * COIN;

    // Subsidy is cut in half every 840000 blocks, which will occur approximately every 3 years
    nSubsidy >>= (nHeight / 105190); // Blackcoin: 105k blocks in ~3 years

    return nSubsidy + nFees;
}

Why does it claim a block reward of 64 coins initially?


What is the value of that "COIN" variable?

If the reward was 10K then that variable value should be 156.25 (10K / 64)

from util.h:

Code:
static const int64 COIN = 100000000;
or, 1 Blackcoin in satoshis
593  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BlackCoin (BC) | PoS | No premine | No IPO on: April 28, 2014, 07:43:33 AM
Can someone explain to me how block rewards are calculated in the Blackcoin code? It was 10k BC during PoW.

Taken from main.cpp from github:
Code:
int64 static GetBlockValue(int nHeight, int64 nFees)
{
    int64 nSubsidy = 64 * COIN;

    // Subsidy is cut in half every 840000 blocks, which will occur approximately every 3 years
    nSubsidy >>= (nHeight / 105190); // Blackcoin: 105k blocks in ~3 years

    return nSubsidy + nFees;
}

Why does it claim a block reward of 64 coins initially?
594  Bitcoin / Development & Technical Discussion / How are block rewards calculated in the Bitcoin code? on: April 28, 2014, 07:08:18 AM
I see the GetBlockValue() function:

Code:
int64_t GetBlockValue(int nHeight, int64_t nFees)
{
    int64_t nSubsidy = 50 * COIN;
    int halvings = nHeight / Params().SubsidyHalvingInterval();

    // Force block reward to zero when right shift is undefined.
    if (halvings >= 64)
        return nFees;

    // Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
    nSubsidy >>= halvings;

    return nSubsidy + nFees;
}

I understand that the bitwise right shift once nHeight is large enough will halve the block reward. What I am confused about is
  • Why nSubsidy is 50 (initial reward) multiplied by 100 million? -- I realized that COIN is 100million satoshis.
  • halvings will be 0 until nHeight is more than  Params().SubsidyHalvingInterval(), but why won't nSubsidy halve with every subsequent nHeight, until nHeight is 2 x Params().SubsidyHalvingInterval() ? -- nSubsidy is always then reset to 50 BTC, and then the bitwise right shift is performed. Can't believe I missed that haha.

Sorry if these have been answered or seem trivial. Looking at this code for the first time can be a little overwhelming when you aren't familiar with it. Thank you.

--Update: Figured it out. Maybe it will be useful for someone else in the future. Mods please close.
595  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 28, 2014, 01:51:06 AM
WC deposite is diabled on both Bittrex and Mintpal
Does Anybody know the reason ?

Blockchain messed up. I sent 10k to mintpal yesterday and it hasn't shown up anywhere. I suggest you don't send any Whitecoins right now.
596  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 27, 2014, 05:00:17 AM
I'm not really sure what's going on, but I would be willing to bet someone is making a lot of money off of this.
597  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 27, 2014, 04:27:12 AM
I just sent some coins, not to sell but just wanted to move them. Didn't see the news until after that. My wallet says it has gone through 6 confirmations, but it's still not listed in pending deposits. Are they gone?
598  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 26, 2014, 10:46:53 AM
Like this coin, just bought in!

You, sir, just made an excellent choice. Hold strong and you will be rewarded!
599  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 26, 2014, 10:03:38 AM
Is there a place we can see the current buying power of the multipools?
600  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] (WC) | WhiteCoin | ☯ Now in PoS stage ☯ MULTIPOOL: whitecoinpool.com ☯ on: April 26, 2014, 06:10:11 AM
my 46MH/s pointed at chunkypools.  Grin

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