Bitcoin Forum
July 14, 2025, 06:41:54 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Bitcoin / Development & Technical Discussion / Bitcoin Constitution - Looking for feedback on: February 22, 2016, 11:49:59 PM
In the light of recent disagreements that is going on regarding consensus, I thought of if we can define a mathematically verifiable process to achieve the same. Hence I have put up my idea in details at http://upalc.com/bitcoin-constitution.php. The basic is as follows...

1. At least 21 bitcoin should support a hard fork proposal to be discussed. A poll, created on www.bitcoinocracy.com and backed by 21 bitcoins, will suffice for Hard Fork to be discussed by miners. Please note that, 21 is an arbitrary figure. The exact figure can be discussed or voted on by the community before accepting this proposal.

2. More than 50% hash power should support the proposal for at least 21 difficulty period. This can be determined using www.blocktrail.com/BTC/blocks/1 or www.coin.dance/blocks. Please note that, both 50% and 21 are arbitrary figure. The exact figure can be discussed or voted on by the community before accepting this proposal.

3. More than 50% coin must support the proposal, where the total amount of coins participating in the poll is more than 1% of the total supply. This can be determined using a poll on www.bitcoinocracy.com. Please note that, both 50% and 1% are arbitrary figure. The exact figure can be discussed or voted on by the community before accepting this proposal.

Any hard forking change should give the network enough time to be aware, test and upgrade. Hence, I propose, all hard forking changes are pushed together only at the time of block reward halving, i.e. once in every four year.

Please feel free to rationally criticize and provide your valuable feedback on this proposal.
2  Local / India / Anyone else from India going to Scaling Bitcoin II @ Hong Kong? on: December 04, 2015, 11:15:32 AM
Details: https://scalingbitcoin.org
3  Bitcoin / Bitcoin Discussion / Encouraging more nodes to secure bitcoin network - A Thought on: November 16, 2015, 10:56:12 PM
Bitcoin network does not have any direct incentive to run a full node. But it is healthy for the network to have more nodes securing it. Hence I was toying with the idea that how a bitcoin node can be incentivized without disturbing the existing bitcoin protocol.

It appears to me that sidechains can be used for this purpose. If bitcoin nodes can be equipped in a way so that it can perform as a gateway between bitcoin blockchain and an altcoin blockchain, i.e. validating the altcoin blockchain with bitcoin network with every bitcoin block found, then this concept might work. These nodes will be super node for the altcoin network, but normal for bitcoin network. Those altcoin blockchain or sidechains may incentivize the nodes, like it happen in PoS and in return can be secured by the huge hashing power of the bitcoin network. The altcoins, secured by the bitcoin network, may also help to solve the ~10 minutes delay of bitcoin confirmation.

As I am not an expert of the sidechain technology, I'd like to know from people with knowledge, whether an altcoin blockchain can be pegged to a bitcoin blockchain using a common node ?
4  Economy / Services / Can someone please provide two graphs built on past blockchain data? on: September 10, 2015, 10:36:41 PM
I proposed BIP 106 to solve the Block Size Max Cap issue - https://github.com/bitcoin/bips/blob/master/bip-0106.mediawiki. The graphs I need are regarding this BIP.

Blockchain.info currently provides a graph plotting the historical data of block size for each block, which can be found at https://blockchain.info/charts/avg-block-size?timespan=all&showDataPoints=false&daysAverageString=1&show_header=true&scale=0&address=

I need two similar graphs plotting max block size cap against each block, calculated as per my two proposal...



Proposal 1: Depending only on previous block size calculation

The basic idea in alogorithmic format is as follows...

Code:
If more than 50% of block's size, found in the first 2000 of the last difficulty period, is more than 90% MaxBlockSize
    Double MaxBlockSize
Else if more than 90% of block's size, found in the first 2000 of the last difficulty period, is less than 50% MaxBlockSize
    Half MaxBlockSize
Else
    Keep the same MaxBlockSize


Proposal 2: Depending on previous block size calculation and previous Tx fee collected by miners

The basic idea in alogorithmic format is as follows...

Code:
TotalBlockSizeInLastButOneDifficulty = Sum of all Block size of first 2008 blocks in last 2 difficulty period
TotalBlockSizeInLastDifficulty = Sum of all Block size of second 2008 blocks in last 2 difficulty period (This actually includes 8 blocks from last but one difficulty)

TotalTxFeeInLastButOneDifficulty = Sum of all Tx fees of first 2008 blocks in last 2 difficulty period
TotalTxFeeInLastDifficulty = Sum of all Tx fees of second 2008 blocks in last 2 difficulty period (This actually includes 8 blocks from last but one difficulty)

If ( ( (Sum of first 4016 block size in last 2 difficulty period)/4016 > 50% MaxBlockSize) AND (TotalTxFeeInLastDifficulty > TotalTxFeeInLastButOneDifficulty) AND (TotalBlockSizeInLastDifficulty > TotalBlockSizeInLastButOneDifficulty) )
    MaxBlockSize = TotalBlockSizeInLastDifficulty * MaxBlockSize / TotalBlockSizeInLastButOneDifficulty
Else If ( ( (Sum of first 4016 block size in last 2 difficulty period)/4016 < 50% MaxBlockSize) AND (TotalTxFeeInLastDifficulty < TotalTxFeeInLastButOneDifficulty) AND (TotalBlockSizeInLastDifficulty < TotalBlockSizeInLastButOneDifficulty) )
    MaxBlockSize = TotalBlockSizeInLastDifficulty * MaxBlockSize / TotalBlockSizeInLastButOneDifficulty
Else
    Keep the same MaxBlockSize

Is it possible to provide these two graphs assuming max block size cap for block 1 was 1mb ?
5  Local / India / How many of you are from West Bengal ? on: August 27, 2015, 02:04:03 PM
Also, please let us know if you are at or around Kolkata...
6  Bitcoin / Development & Technical Discussion / BIP 106: Dynamically Controlled Bitcoin Block Size Max Cap on: August 17, 2015, 01:26:59 AM
I have tried to solve the maximum block size debate in two different proposal.

i. Depending only on previous block size calculation.

ii. Depending on previous block size calculation and previous Tx fee collected by miners.


BIP 106: https://github.com/bitcoin/bips/blob/master/bip-0106.mediawiki

Proposal in bitcoin-dev mailing list - http://lists.linuxfoundation.org/pipermail/bitcoin-dev/2015-August/010285.html


Proposal 1: Depending only on previous block size calculation

The basic idea in alogorithmic format is as follows...

Code:
If more than 50% of block's size, found in the first 2000 of the last difficulty period, is more than 90% MaxBlockSize
    Double MaxBlockSize
Else if more than 90% of block's size, found in the first 2000 of the last difficulty period, is less than 50% MaxBlockSize
    Half MaxBlockSize
Else
    Keep the same MaxBlockSize


Proposal 2: Depending on previous block size calculation and previous Tx fee collected by miners

The basic idea in alogorithmic format is as follows...

Code:
TotalBlockSizeInLastButOneDifficulty = Sum of all Block size of first 2008 blocks in last 2 difficulty period
TotalBlockSizeInLastDifficulty = Sum of all Block size of second 2008 blocks in last 2 difficulty period (This actually includes 8 blocks from last but one difficulty)

TotalTxFeeInLastButOneDifficulty = Sum of all Tx fees of first 2008 blocks in last 2 difficulty period
TotalTxFeeInLastDifficulty = Sum of all Tx fees of second 2008 blocks in last 2 difficulty period (This actually includes 8 blocks from last but one difficulty)

If ( ( (Sum of first 4016 block size in last 2 difficulty period)/4016 > 50% MaxBlockSize) AND (TotalTxFeeInLastDifficulty > TotalTxFeeInLastButOneDifficulty) AND (TotalBlockSizeInLastDifficulty > TotalBlockSizeInLastButOneDifficulty) )
    MaxBlockSize = TotalBlockSizeInLastDifficulty * MaxBlockSize / TotalBlockSizeInLastButOneDifficulty
Else If ( ( (Sum of first 4016 block size in last 2 difficulty period)/4016 < 50% MaxBlockSize) AND (TotalTxFeeInLastDifficulty < TotalTxFeeInLastButOneDifficulty) AND (TotalBlockSizeInLastDifficulty < TotalBlockSizeInLastButOneDifficulty) )
    MaxBlockSize = TotalBlockSizeInLastDifficulty * MaxBlockSize / TotalBlockSizeInLastButOneDifficulty
Else
    Keep the same MaxBlockSize


Details: http://upalc.com/maxblocksize.php

Requesting for comment.
7  Local / India / Kolkata Bitcoin Meetup - March 1, 2015 on: February 01, 2015, 10:49:32 AM
http://www.meetup.com/Bitcoin-Kolkata-Meetup/events/220213910/

8  Bitcoin / Meetups / Bitcoin Meetup - Kolkata, India on: September 11, 2014, 10:01:45 AM
Slowly and silently the City of Joy is catching up the Bitcoin fever.

The second Bitcoin meetup is going to take place in Kolkata, India on September 20, 2014 at HiLand Park :: http://www.meetup.com/Bitcoin-Kolkata-Meetup/events/206405622/

Please join our meetup group :: http://www.meetup.com/Bitcoin-Kolkata-Meetup/
9  Local / India / Kolkata Bitcoin Meetup - September 20, 2014 on: September 11, 2014, 09:51:41 AM
We are going to organize the second Bitcoin meetup in Kolkata on September 20, 2014 at HiLand Park. U are cordially invited to join us at around 4:00pm...

http://www.meetup.com/Bitcoin-Kolkata-Meetup/events/206405622/
10  Bitcoin / Bitcoin Discussion / Will Satoshi Nakamoto be world's first trillionaire ? on: July 26, 2014, 06:44:10 PM
It has been discussed in the article Bitcoin Trillionaire.

What is your opinion ?

11  Other / Off-topic / What is the Future of Bitcoin ? on: June 24, 2014, 02:22:38 PM
Here is an article on the future of bitcoin. What is the community opinion about it ?


12  Local / Marketplace (India) / Selling 0.11 BTC against NEFT on: June 08, 2014, 05:56:50 PM
Asking price Rs. 4000/-

13  Other / Off-topic / God is Reality on: June 02, 2014, 10:49:12 AM
The Creator or God is largely an incomprehensible embodiment of intelligence and life forms, in the planet Earth, are allowed sufficient time to be intelligent enough to understand the broad design of the cosmic evolution and investigate the creation of life and survival of the mankind in our planet, thereby empowering them to find the foot-print of the Creator.

Please read on and leave your comment - God is Reality


14  Local / Off-Topic (India) / EarthQuake on: May 21, 2014, 04:32:45 PM
Just felt earthquake in Kolkata. Anyone else felt it ?
15  Economy / Marketplace / . on: January 05, 2014, 01:33:02 PM
.
16  Other / Beginners & Help / Topic Closed on: January 04, 2014, 06:25:17 PM
None of the blocks sold !!!  Sad
17  Bitcoin / Bitcoin Technical Support / Can block height change ? on: January 02, 2014, 09:20:46 PM
When I register the block height of a transaction with the following API, does that remain fixed forever ?

https://blockchain.info/rawtx/txHash

...and one more thing. I was checking this : http://blockexplorer.com/q/getblockhash/273824 ...It used to return a proper block hash a few days ago. Now it says the following. Why so ?

ERROR: unknown (Most likely my bitcoind stopped working or this page is too large/complex.)
18  Other / Off-topic / HappY NeW YeaR 2014 on: December 31, 2013, 04:02:22 PM
Happy New Year Bitcoin
19  Other / Meta / Post Count stuck on: December 31, 2013, 02:09:35 PM
For the last few days my post count is stuck to 28 !!! I wonder why ?
20  Bitcoin / Development & Technical Discussion / To know a block in mainchain on: December 29, 2013, 08:41:12 PM
I have this...

https://blockchain.info/rawblock/00000000000007d0f98d9edca880a6c124e25095712df8952e0439ac7409738a

Here it shows "main_chain":true. After some Tx inside this block get a few confirmation, is it possible that "main_chain":true will convert to "main_chain":false ?
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!