4
One issue with one block chain is that it needs to be globally synchronized. One way to elevate this would be to use multiblock chains.
Namely, we can imagine that there are N block chains, working in parallel. To make double spending impossible, a you can only spend a total of 1/N of your total money on each chain. (If they need to spend more, you can do so on multiple chains. This is slower, but hopefully you don't need to do that as often. If, for example, there 10 chains, you have 100 units, and you are buying something for 15 units, you would spend 10 on one chain and 5 on another.)
After about 10 blocks or so (specifically when it happens is unspecified for now), a meta-block is mined that ties the chains together. This resets the 1/N limit, and allows money earned on one block to spent on the others. Otherwise, it would just be N different currencies.
Each individual block chain can go faster, since they will involve only 1/N of the community. More total blocks also means miners are rewarded more often, and more spread out.
Would this work? Would it verify transactions more often? Do any currencies currently use this?
By faster verification, do you mean that there would be less time until the first confirmation, or that the Bitcoin network would be able to process more transactions per second, or both? – Nick ODell – 2016-05-07T01:21:47.767
@NickODell both – PyRulez – 2016-05-07T01:22:25.850
There are ideas along these lines. "Sharding" is one name for this. Naïve versions don't work (I don't have enough details to make this into an answer). One problem is that in Bitcoin the PoW hashing is important for security: splitting the miners into 2 separate networks results in less than half of the security for each part. Partly because each network will have a certain number of orphan blocks, combined more than one big network would have. But also because 51% attacks on one shard is easier than on the whole. I think Peter Todd has some sharding proposals with some tweaks that might work – Jannes – 2016-05-07T02:55:34.257