Bitcoin Forum
August 05, 2024, 01:34:31 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 »
2081  Bitcoin / Bitcoin Discussion / Re: The Rise and Rise of Bitcoin - Full Movie for Free on: October 14, 2014, 07:19:17 AM
I watched with my wife. very nice documentary. Hope someday it will be on tv.
2082  Economy / Services / Re: ★☆★Bitin.io » Instant Cryptocoin Exchange » Campaign, Sig & Personal Msg ★☆★ on: October 14, 2014, 07:08:05 AM
how many persons are in the campaign?

94, according to this document

Is there a limit here to how many they will take? I would think they are paying out a lot, but then again the rates are low enough that perhaps it is not as much as other campaigns. Still, other campaigns seem to average around a 25 member limit.

its a first step for newbies and jr.member to earn here. This is only the sig campaign which accepts those ranks

Wow.. Smiley This will be great news for all of us

Highly recommend newbies and Jr. members to join this campaign. Honest work, honest pay.
2083  Bitcoin / Bitcoin Discussion / Re: Why 1BTC should equal 10^8 satoshi ? on: October 14, 2014, 06:59:14 AM
This is the current GetBlockValue, providing a total money supply of 2099'9999'9769'0000 satoshis, halving the subsidy every 21'0000 blocks:

Code:
CAmount GetBlockValue(int nHeight, const CAmount &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;
}

This is a proposed GetBlockValue, providing a total money supply of 2099'9999'9769'0000 satoshis, halving the subsidy every 21'0000 blocks, smoothly:

Code:
CAmount GetBlockValue(int nHeight, const CAmount &nFees) {
    int nHalvingInterval = Params().SubsidyHalvingInterval();
    int nHalvings = nHeight / nHalvingInterval;

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

    // Subsidy is cut in half every 210000 blocks which will occur approximately every 4 years.
    int64_t nSubsidy = COIN * 50 >> nHalvings;

    int nMaxIntervalHeight = nHalvingInterval - 1;
    int nSubinterval = nHeight * 2 / nHalvingInterval % 2;

    // Subsidy decreases linearily, beginning with 4/3, ending with 2/3 of the nominal value.
    nSubsidy *= (nMaxIntervalHeight * 2 - nHeight % nHalvingInterval) * 2;
    nSubsidy -= nSubinterval;
    nSubsidy /= nMaxIntervalHeight * 3;
    nSubsidy += nSubinterval;

    return nSubsidy + nFees;
}

This is the corresponding hard fork proposal, with switchover scheduled for block 42'0000:

Code:
CAmount GetBlockValue(int nHeight, const CAmount &nFees) {
    int nHalvingInterval = Params().SubsidyHalvingInterval();
    int nHalvings = nHeight / nHalvingInterval;

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

    // Subsidy is cut in half every 210000 blocks which will occur approximately every 4 years.
    int64_t nSubsidy = COIN * 50 >> nHalvings;

    // Smoothened subsidy commences after the second halving, i.e. at block 420000.
    if (nHalvings >= 2) {
        int nMaxIntervalHeight = nHalvingInterval - 1;
        int nSubinterval = nHeight * 2 / nHalvingInterval % 2;

        // Subsidy decreases linearily, beginning with 4/3, ending with 2/3 of the nominal value.
        nSubsidy *= (nMaxIntervalHeight * 2 - nHeight % nHalvingInterval) * 2;
        nSubsidy -= nSubinterval;
        nSubsidy /= nMaxIntervalHeight * 3;
        nSubsidy += nSubinterval;
    }

    return nSubsidy + nFees;
}

This explanation is quite thorough. Maybe I should download the source myself and check it out. Thanks
2084  Bitcoin / Bitcoin Discussion / Re: Tor+Blockchain wallet hacked? 633 btc loss on: October 14, 2014, 06:57:51 AM
I saw it in the Chinese section too. It's kind of hard to believe, since Blockchain just got a lot of money from VC.
2085  Economy / Services / Re: Cointellect referall signature campaign. Up to 0,0013 BTC for post on: October 14, 2014, 06:55:26 AM
The campaign is currently having some trouble. Joining is not recommend.
2086  Economy / Speculation / Re: We will break 400 for good within the next 8 hours on: October 14, 2014, 06:49:48 AM
just hit $400 on coinbase. boom.
A few minutes ago, more than $420. Shall see $500 not very far away.
2087  Economy / Speculation / Re: BUY NOW! on: October 14, 2014, 06:48:38 AM
I urge all of you to buy before the price doubles this month...just a fair warning.

Already all in. Let's find out in a few months.
2088  Economy / Speculation / Re: Your current valuation of a bitcoin? on: October 14, 2014, 06:47:46 AM
Wink $1999 
2089  Bitcoin / Bitcoin Discussion / Re: Satoshi Nakamoto post on pastebin? on: October 14, 2014, 02:16:19 AM
Seems scam to me. Why would Satoshi waste his time to get 100BTC, and take the risk of being traced and identified, while he already has like 1000kBTC.
2090  Local / 中文 (Chinese) / Re: 本论坛解禁了? on: October 13, 2014, 02:03:00 AM
现在改改hosts还能上,如果接着发香港的帖子估计就离完全墙不远了
2091  Bitcoin / Bitcoin Discussion / Re: Is stealing bitcoins illegal? on: October 13, 2014, 12:28:18 AM
Stealing in any circumstances is not legal. This risk of getting caught is not worth it.
2092  Economy / Services / Re: ★☆★Bitin.io » Instant Cryptocoin Exchange » Campaign, Sig & Personal Msg ★☆★ on: October 12, 2014, 10:30:29 AM
Got the payment. Thanks.
Now I'm resigning signature Ad part. Is it possible to remain the personal Msg part? As indicated in OP.

Personal Advertising Message ONLY: 0.00001 BTC per constructive post. 20 Posts min per week.
2093  Economy / Services / Re: PRCDice.eu - Signature campaign + Affiliate Program on: October 12, 2014, 10:13:19 AM
Latest members added:
madmax6688      
crazy-pilot      
lucaspm98      
ANTIcentralized   
seedtrue      
Gianluca95      
mezmerizer9      
novacn         
b4basit         
diazepam666      
Seketsuna      
jiayuan         
pitham1         
ytr8         
lilin321      
pafzlo         
a1choi         
srgkrgkj

If I missed you please pm.

Thanks


Enroll. Count Me In. Thank you!

Rank:     full member
Address: 1KBDrf46e8XFmTDcEhvFwFLvY4KEAGQN2Q
Posts:     176


I'm enrolling.

Name:    nextblast
Rank:     full member
Address: 1KBDrf46e8XFmTDcEhvFwFLvY4KEAGQN2Q
Posts:     176
2094  Economy / Services / Re: ★☆★Bitin.io » Instant Cryptocoin Exchange » Campaign, Sig & Personal Msg ★☆★ on: October 12, 2014, 09:05:38 AM
How to calculate my reward, if I have 20 posts.

Just multiply with 0.0001. Smiley

The payment will be processed soon!

  ~~MZ~~
Looking forward to that.
2095  Economy / Services / Re: PRCDice.eu - Signature campaign + Affiliate Program on: October 12, 2014, 12:28:05 AM
Enroll. Count Me In. Thank you!

Rank:     full member
Address: 1KBDrf46e8XFmTDcEhvFwFLvY4KEAGQN2Q
Posts:     176
2096  Local / 中文 (Chinese) / Re: 鉴于目前的价格,从投资的角度看,比特币还算是个骗局吗? on: October 10, 2014, 02:15:05 PM
好吧,我被骗了,谁是获益方呢?难道是传说中的中本聪 Huh
2097  Local / 中文 (Chinese) / Re: 比特时代最近提现金怎么都是特别慢? on: October 10, 2014, 02:14:04 PM
比特时代也是经过时间考验的,应该不会有太大问题
2098  Local / 中文 (Chinese) / Re: 各位,请问下,用比特币海淘比较靠谱的网站? 求推荐。。。 on: October 10, 2014, 02:13:15 PM
传说中的overstock和newegg呢?有人试过不
2099  Local / 中文 (Chinese) / Re: 我挖比特币的一点经历 on: October 10, 2014, 02:12:30 PM
有趣的经历,希望多看到这样的文章!以为贴吧肯定没什么干货呢
2100  Local / 中文 (Chinese) / Re: 难道中文社区真的没有几个人了吗 on: October 10, 2014, 02:09:48 PM
大GFW的威力不能小看啊 Cool
Pages: « 1 ... 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 [105] 106 107 108 109 110 111 112 113 114 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!