Search content
Sort by

Showing 10 of 10 results by Svick
Post
Topic
Board Development & Technical Discussion
Re: Guide to how Bitcoin works
by
Svick
on 16/07/2010, 16:11:29 UTC
My "oldest" transaction is from 7/11 (roughly 6 days ago).  It has 2983 confirmations, which even at a "slow" estimate of every 10 minutes, that was 8 hours ago. :-S  And it doesn't increase when the number of blocks does.
How did you compute that time?

2983 confirmations / 6 confirmations per hour ≐ 497 hours ≐ 21 days.

The result is this big because currently, block are generated much faster than one per 10 minutes.
Post
Topic
Board Development & Technical Discussion
Re: loop {} in main.cpp
by
Svick
on 16/07/2010, 12:18:14 UTC
Yes, it's a macro defined in util.h as

Code:
#define loop for (;;)
Post
Topic
Board Development & Technical Discussion
Re: Bitcoin is "Growing Up" : Feature Request
by
Svick
on 16/07/2010, 07:43:27 UTC
I've seen transaction fees mentioned a few times but I don't see any way in the client to implement them.
Looks like they will be implemented only after emission of 21 million BTCs will be close to an end.
The fees are already implemented, in the case of very large transactions.

It is done so that when you create a transaction, you put more bitcoins in than what goes out. The difference goes to whoever manages to create an accepted block with your transaction. If I wanted, I could modify my client so that your transaction is included in the block I'm generating only if it gives me enough bitcoins as a fee. If enough (generating) clients did this, it would be advantageous for you to add the fee to your transactions, so that they are processed faster.
Post
Topic
Board Bitcoin Discussion
Re: Wasted Computations and Grid Computing
by
Svick
on 15/07/2010, 22:37:01 UTC
The hash function is used because it is irreversible, easily checkable, small in size, and probably some other things I'm forgetting.  Even if you could, for example, encode the transactions as a polypeptide (chain of amino acids), and then made folding the polypeptide into a protein the proof-of-work, such a proof-of-work could not be checked without redoing the entire computation.
I'm no biochemist, so I'm not sure about this, but I think you could do that. Folding proteins is about finding states with low energy (because in nature, proteins occur in the state that has the lowest energy). So you could encode the information in a polypeptide, have some energy limit that you have to fit in order to generate the block and fold the polypeptide until you find a state with low enough energy. Verifying what energy does a certain state have should be relatively fast.

On the other hand, such computations probably don't have any value to biochemists, so this would just replace one “useless” computation with another.
Post
Topic
Board Bitcoin Discussion
Re: Hashing slowdown
by
Svick
on 15/07/2010, 16:25:12 UTC
Isn't that just because the difficulty increased?
Post
Topic
Board Development & Technical Discussion
Re: Security
by
Svick
on 15/07/2010, 11:04:32 UTC
Is it true that the difficulty can be changed with a patch accepted by 50% of nodes? Doesn't this mean that an attacker only needs to set up a bunch of nodes and not actually have a majority of cpu power? How hard would it be to do an attack like that? What does it take to have a node? A 2880 bps modem and a Pentium 386? Can a computer hold multiple nodes?
I don't think so. I think that if you created a block with lower difficulty than what I think is the current difficulty, I wouldn't accept it. That means I wouldn't accept any coins that originated in a block with this lower difficulty. This would effectively split the network in two.
Post
Topic
Board Marketplace
Re: New exchange (Bitcoin Market)
by
Svick
on 14/07/2010, 21:35:52 UTC
I can't connect to https://www.bitcoinmarket.com/ nor to https://98.168.172.185/. Is the site down?
Post
Topic
Board Bitcoin Discussion
Re: Defending Bitcoin against interventionists
by
Svick
on 12/07/2010, 18:31:04 UTC
I assumed that we were getting the blocks to solve from a central authority and when I computer solves that block it turns into money. I am probably wrong.
No, block is (as the FAQ says) just a sequence of transactions that happened since the last block was created plus a transaction that gives you the newly created bitcoins. It is just made so that creating this block is quite difficult. There is no central authority in the whole system (apart from an IRC feed used only to get other people's addresses).
Post
Topic
Board Bitcoin Discussion
Re: Bitcoin roadmap
by
Svick
on 12/07/2010, 11:06:14 UTC
What I would like to see is lower time to get started – currently, it takes several hours just to download all the blocks, which amount to few megabytes of data.

Or does it take so long because my PC has to verify all the blocks?
Post
Topic
Board Bitcoin Discussion
Re: Defending Bitcoin against interventionists
by
Svick
on 12/07/2010, 10:54:58 UTC
There is one other way to change the amount of coins in circulation however, the dev(s) have a key that lets them print money. odds are good the dev(s) will make a shit ton of coins from this and not delete the key. unless someone somehow gets the key then you can't add new currency technologically.
How does that work? As far as I understand it, new bitcoins can be generated only by creating a new block, 50 BC at a time (for now). If the devs have some way to generate new bitcoins quickly, that would pretty much defeat the purpose of having P2P network with no central authority. Instead of trusting banks, we would have to trust the devs.