Bitcoin Forum
April 19, 2024, 11:47:50 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Some newbie questions about BTC  (Read 657 times)
xenon28 (OP)
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
December 25, 2011, 05:46:51 PM
 #1

Hey, just a few dozen questions that I cant find a satisfactory answer to from the wiki or anywhere else on the internet Smiley

1. When almost all bitcoins have been mined, is the only incentive for people to continue mining operations, to gain transaction fees? Would this be enough?

2. As the bitcoin network grows exponentially, wouldn't there come a point where there are so many transactions etc going on that the network finds it hard to cope and it begins to take ages to do simple transfers? This may be completely wrong, I just get the impression from when synchronizing more recent block chain blocks are so much larger and take longer to download than early ones.

3. (I have read about this question on the wiki but am still not entirely sure) Your 'wallet' is just a private alphanumeric string with which all the bitcoins that belong to you are associated, or something more in that .dat file? And receiving addresses are simply public addresses for your wallet for people to send bitcoins to?

4. If tonnes of nodes went offline for whatever reason, so the bitcoin network shrunk to a fraction of its size, even if only temporarily, what impact would this have on the vulnerability of the network to an attack and the average transaction speed?

Cheers! Please forgive my newbie lack of knowledge if some of these questions are nonsensical. I have read alot about bitcoins but dont have a computing background Smiley

Xenon
1713570470
Hero Member
*
Offline Offline

Posts: 1713570470

View Profile Personal Message (Offline)

Ignore
1713570470
Reply with quote  #2

1713570470
Report to moderator
1713570470
Hero Member
*
Offline Offline

Posts: 1713570470

View Profile Personal Message (Offline)

Ignore
1713570470
Reply with quote  #2

1713570470
Report to moderator
"Your bitcoin is secured in a way that is physically impossible for others to access, no matter for what reason, no matter how good the excuse, no matter a majority of miners, no matter what." -- Greg Maxwell
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713570470
Hero Member
*
Offline Offline

Posts: 1713570470

View Profile Personal Message (Offline)

Ignore
1713570470
Reply with quote  #2

1713570470
Report to moderator
DeathAndTaxes
Donator
Legendary
*
Offline Offline

Activity: 1218
Merit: 1079


Gerald Davis


View Profile
December 25, 2011, 06:15:33 PM
Last edit: December 26, 2011, 01:02:20 AM by DeathAndTaxes
 #2

Hey, just a few dozen questions that I cant find a satisfactory answer to from the wiki or anywhere else on the internet Smiley

1. When almost all bitcoins have been mined, is the only incentive for people to continue mining operations, to gain transaction fees? Would this be enough?

Simple version:  It likely will be enough.  The larger Bitcoin becomes the smaller the per transaction cost can be to support a given network size.  The transaction fee rules will need to be changed to create a functional transaction fee "economy" though.  

http://bitcoin.stackexchange.com/questions/876/how-much-will-transaction-fees-eventually-be

Quote
2. As the bitcoin network grows exponentially, wouldn't there come a point where there are so many transactions etc going on that the network finds it hard to cope and it begins to take ages to do simple transfers? This may be completely wrong, I just get the impression from when synchronizing more recent block chain blocks are so much larger and take longer to download than early ones.

No it won't increase the time of transactions however the computational load on network nodes will continue to increase.  Currently the node "duties" are trivial (except block hashing) because transaction volume is very low <1tps.  If transaction volume grew to Paypal sized volume (100tps) or VISA scale volume (4000 tps) the requirements of nodes will likely be soo high (in terms of bandwidth, disk, memory, and cpu/gpu power) that most users won't use full nodes.  They will run lite nodes (connecting to secure block-chain servers), eWallets, and other alternative systems.  It is also possible that Bitcoin will form a the low level high value network (think bank ACH) and higher level daily transaction type networks and services will grow on top of it.

http://bitcoin.stackexchange.com/questions/1708/capabilities-of-bitcoins-and-their-place-in-the-future

Quote
3. (I have read about this question on the wiki but am still not entirely sure) Your 'wallet' is just a private alphanumeric string with which all the bitcoins that belong to you are associated, or something more in that .dat file? And receiving addresses are simply public addresses for your wallet for people to send bitcoins to?

No.  An address is a hash of the public key.  The private key controls funds for a given public key/addresss.  So the wallet.dat is a simply a collection of address & key pairs.  There are no actual "bitcoins" the blockchain records the VALUE of each address.
(i.e. address ABC has a value of 1 BTC, address xyz has a value of 999 BTC).  The value of your entire wallet is the sum of the values of all addresses of which you have a private key for.  The wallet "knows" the value of your wallet by comparing the value the block chain says each address has with the addresses you "own".

Quote
4. If tonnes of nodes went offline for whatever reason, so the bitcoin network shrunk to a fraction of its size, even if only temporarily, what impact would this have on the vulnerability of the network to an attack and the average transaction speed?

It depends on how much a "ton" is, how long they are offline, and how rapidly they decline.

With current hashing power one block is solved every 10 minutes.  If hashing power declined say 20% then average block time would rise to 12 minutes.  Every 2016 blocks the network re-adjusts itself (by changing difficulty of finding a block) so average time is 10 minutes.  The one issue is that is a massive amount of the hashing power went dark and stayed dark (say 90% of the network turned off) it may take a very long time until the next adjustment.  As long as the changing is hashing power is small or gradual the network can compensate without any significant change in transaction processing time.


As far as vulnerability.  Attacking the network is possible but very expensive.  Even if half the nodes went offline that dynamic wouldn't change.  There are methods being discussed (but far from being implemented) to provicde further protection to the network beyond the brute force aspect of the sheer network size.
jake262144
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
December 25, 2011, 06:21:08 PM
Last edit: December 25, 2011, 06:49:53 PM by jake262144
 #3

Howdy!

Ad 1. Yes, the only incentive will be transaction fees. That will be plenty provided bitcoin universe is large enough (at least an order of magnitude more transactions than we currently have). Please note that we're not running out of mineable bitcoins any time soon.


Ad 2. Not gonna happen. Difficulty will drop if miners aren't strong enough, that's the beauty of the algorithm. It might be fair to criticize bitcoin's inefficient use of electric power due to the approach to difficulty but that's the price you pay for the reliability, flexibility, and independence from a trusted third party.
EDIT:: I think I misread your question. DeathAndTaxes is right on point, as he usually is.


Ad 3. There are your private keys ( a pair of these for each of your address) (in fact there is a whole pool of them (100 by default) just waiting to be used), your transaction data, reserve keys, some preferences and versioning info, saved recipient addresses, ...a lot of good stuff inside that file ^^


Ad 4. That's correct. Should the number of active nodes be decimated, the bar for successfully attacking the network would be lowered accordingly. Mind you, taking a significant portion of nodes is a non-trivial task. Attacking mining pools is of limited impact as all serious miners configured their rigs to switch to solo mining if they can't connect to any pre-defined pool. The network has successfully coped with massive DoS attacks in the past.
Any serious and devastating attack would have to exploit some vulnerability in the bitcoin software.


EDIT:: Merry Christmas DAT!
xenon28 (OP)
Newbie
*
Offline Offline

Activity: 5
Merit: 0


View Profile
December 25, 2011, 11:31:12 PM
 #4

Thanks for the detailed replies! It will be interesting to see what happens when/if all the bitcoins are mined...
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!