Pages:
Author

Topic: [PATCH] increase block size limit - page 4. (Read 89775 times)

legendary
Activity: 1596
Merit: 1091
October 04, 2010, 04:10:01 AM
#6
We can phase in a change later if we get closer to needing it.

IMO it's a marketing thing.  It's tough to get people to buy into a system, if the network is technically incapable of supporting high transaction rates.

Satoshi just said it can be changed, so technically the network is capable.

It is also an incompatible change, as you see.....
legendary
Activity: 1246
Merit: 1014
Strength in numbers
October 04, 2010, 03:39:35 AM
#5
We can phase in a change later if we get closer to needing it.

IMO it's a marketing thing.  It's tough to get people to buy into a system, if the network is technically incapable of supporting high transaction rates.

Satoshi just said it can be changed, so technically the network is capable.
legendary
Activity: 1596
Merit: 1091
October 03, 2010, 05:38:46 PM
#4
We can phase in a change later if we get closer to needing it.

IMO it's a marketing thing.  It's tough to get people to buy into a system, if the network is technically incapable of supporting high transaction rates.
founder
Activity: 364
Merit: 6723
October 03, 2010, 05:07:28 PM
#3
Applying this patch will make you incompatible with other Bitcoin clients.
+1 theymos.  Don't use this patch, it'll make you incompatible with the network, to your own detriment.

We can phase in a change later if we get closer to needing it.
administrator
Activity: 5166
Merit: 12850
October 03, 2010, 04:28:39 PM
#2
Applying this patch will make you incompatible with other Bitcoin clients.
legendary
Activity: 1596
Merit: 1091
October 03, 2010, 04:13:42 PM
#1
We should be able to at least match Paypal's average transaction rate...

Code:
diff --git a/main.h b/main.h
index c5a0127..c92592a 100644
--- a/main.h
+++ b/main.h
@@ -14,7 +14,10 @@ class CBlockIndex;
 class CWalletTx;
 class CKeyItem;
 
-static const unsigned int MAX_BLOCK_SIZE = 1000000;
+static const unsigned int TX_PER_MINUTE = 1400;
+static const unsigned int TX_AVG_SIZE_GUESS = 256;
+static const unsigned int MAX_BLOCK_SIZE =
+ TX_PER_MINUTE * TX_AVG_SIZE_GUESS * 10 * 2;
 static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
 static const int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
 static const int64 COIN = 100000000;

URL: http://yyz.us/bitcoin/patch.bitcoin-block-sz-limit
Pages:
Jump to: