Bitcoin Forum
May 24, 2024, 04:47:40 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 [417] 418 419 420 421 »
8321  Bitcoin / Bitcoin Technical Support / Re: How long to start generating BC's? on: July 14, 2010, 01:42:18 AM
Yes, it would.
8322  Bitcoin / Bitcoin Technical Support / Re: How long to start generating BC's? on: July 14, 2010, 12:44:14 AM
The goal is to minimize inflation, not keep it going forever. BitCoin generation at this point is just an incentive for people to create blocks. Clearly it's working if hundreds of computers are being added to the network. It doesn't matter if new users can't get free coins -- BitCoin is not meant to be a "virtual printing press". In 4-8 years, no average user is going to be generating coins; this is expected and intentional.
8323  Bitcoin / Bitcoin Discussion / Re: resource hog on: July 14, 2010, 12:28:15 AM
windows 7 home 64
I don't think their is any renicing under Windows.

 Wink
C:\Windows\System32\cmd.exe /c start "BitCoin" /LOW /MIN "C:\Program Files\Bitcoin\bitcoin.exe"
8324  Bitcoin / Bitcoin Discussion / Re: Proof-of-work difficulty increasing on: July 13, 2010, 02:41:59 PM
The probability of winning per hash went from 9.90701E-12 to 5.12995E-12. So about double the difficulty.
8325  Bitcoin / Bitcoin Technical Support / Re: How long to start generating BC's? on: July 13, 2010, 06:13:44 AM
I have created a page that always shows the current block count:
http://theymos.ath.cx:64150/q/getblockcount
8326  Bitcoin / Bitcoin Discussion / Re: Future 'Generate Coins' Motivation on: July 13, 2010, 06:07:48 AM
Transaction fees are already changed in certain circumstances. This will be the incentive once generating coins isn't profitable.
8327  Bitcoin / Bitcoin Discussion / Re: Block vs Transaction vs Coin on: July 13, 2010, 05:39:03 AM
Maybe this post will help you understand what a block contains.

Quote
If blocks form a chain and must be solved, and if the solution of the block depends on the hash of the block, doesn't adding a transaction to a block invalidate the solution?

Each hash you create doesn't depend on any of the other hashes that you've created, so it doesn't slow you down to modify the block. You don't have to "start over". This is what you do:
- Hash the block, check if it's a winner, increment the nonce if it's not, and repeat. Each one of these hashes is not stored and not important if it isn't a winner.
- When you see a transaction, add it and then keep hashing.
- Once you win, stop adding transactions and publish the block. If you added a new transaction at this point, your result would be invalidated, but this is not what happens.
- Prepare a new block and start hashing again.
Each published block is a "snapshot" of the current transactions.

Quote
If the number of blocks are finite and blocks are not mutable (transactions cannot be added to them), doesn't that imply that the number of transactions is also finite.

The number of blocks is not finite. Blocks will be created roughly every 10 minutes, forever. At some point publishing a block will generate less than 1 coin, but blocks will still be created. The "21 million" number is either not really a hard limit, or it's a mathematical limit resulting from halving the number of coins per block every four years. (I don't know which.)

Quote
In the context of blocks and transactions, what exactly is a coin?

It's a history of transactions. A generation, being the first transaction in a transaction history, creates a coin. The paper says: "We define an electronic coin as a chain of digital signatures."
8328  Bitcoin / Bitcoin Discussion / Re: Distributed reputation system on: July 13, 2010, 04:20:50 AM
You could pay the network (whoever solves your block) a fee to make ratings. That should limit abuse, though I don't know if anyone would actually pay the fee.
8329  Bitcoin / Bitcoin Technical Support / Re: Warning this block was not received by any other nodes on: July 12, 2010, 10:16:37 PM
Since it's happening so frequently (you shouldn't get more than two generations per day normally with the current difficulty), you probably haven't downloaded the entire block chain. There are 66145 blocks as I write this; how many do you have (lower right in BitCoin's UI)?

If you're running Microsoft Security Essentials, you need to add BitCoin as an exception for blocks to be downloaded at a reasonable speed.
8330  Bitcoin / Bitcoin Discussion / Re: Idea: Portable Bitcoin on: July 12, 2010, 08:09:55 PM
Quote
Bitcoin would also have to be careful not to store the plaintext wallet in memory, in case the random computer was spying on its memory.

You need to store the wallet in memory to access it. If the computer you're using is compromised, then there's nothing that BitCoin can do to make you secure.
8331  Bitcoin / Development & Technical Discussion / Re: Bitcoin makes my motherboard beep. on: July 12, 2010, 07:35:36 AM
Your CPU is overheating. Limit the number of cores BitCoin can use if you have more than one core.
8332  Bitcoin / Bitcoin Technical Support / Re: How-to for running Bitcoin on Linux sans GUI? on: July 12, 2010, 05:36:43 AM
It's in your datadir -- the same location as wallet.dat. You can specify datadir as a parameter: "bitcoind -datadir=/whatever", but I think it's probably used some default location.
8333  Bitcoin / Bitcoin Technical Support / Re: Generating Coins on Multiple Computers on: July 12, 2010, 05:00:27 AM
You need to send them to yourself.
8334  Bitcoin / Bitcoin Technical Support / Re: How-to for running Bitcoin on Linux sans GUI? on: July 12, 2010, 03:44:41 AM
Search debug.log for "hashmeter".
8335  Bitcoin / Development & Technical Discussion / Re: How much network traffic does the bitcoin client generate? on: July 12, 2010, 02:57:50 AM
I measured this a few months ago (over 24 hours):

    * Bytes sent without BitCoin: 2475590 (2.4MiB)
    * Bytes received without BitCoin: 2798454 (2.7MiB)
    * Bytes sent with BitCoin (not port forwarded): 2210854 (2.1MiB)
    * Bytes received with BitCoin (not port forwarded): 4699445 (4.5MiB)
    * Bytes sent with BitCoin (port forwarded): 20879040 (19.9MiB)
    * Bytes received with BitCoin (port forwarded): 10954438 (10.4MiB)

So almost nothing.
8336  Bitcoin / Bitcoin Discussion / Re: Defending Bitcoin against interventionists on: July 10, 2010, 08:53:37 PM
Quote
We might consider enforcing a "we only support official clients" rule in the future, if there's some sort of Bitcoin fork, ofcourse.

That's impossible to enforce at a technical level.
8337  Bitcoin / Development & Technical Discussion / Re: Hashes per second as bitcoind/JSON-RPC command on: July 10, 2010, 04:04:17 PM
Search debug.log for "hashmeter". I have this in my status script for BitCoin:
Code:
grep hashmeter debug.log |tail -n3

An RPC command would be useful, though.
8338  Bitcoin / Bitcoin Discussion / Re: PeerGuardian for bitcoin. on: July 10, 2010, 06:00:03 AM
The BlueTack blocklists used by every IP-blocking program are horribly managed. Several times I've found that I was blocked on my consumer-level, dynamic AT&T service. I once read that 60% of the entire IP address space is blocked by BlueTack's list, though I have not confirmed this.

You wouldn't need to fork the code of PeerGuardian (or PeerBlock, which is maintained): just create your list and import it into the blocking program. I don't think it's a good idea, though -- IP addresses are poor identifiers.
8339  Bitcoin / Bitcoin Discussion / Re: Defending Bitcoin against interventionists on: July 09, 2010, 05:17:11 PM
If you edit the code and it changes the core behavior, then all other nodes will ignore you unless they're also running your code.
8340  Bitcoin / Bitcoin Discussion / Re: Defending Bitcoin against interventionists on: July 09, 2010, 05:12:00 PM
BitCoin already has all the defense it needs: you can't change the core behavior of BitCoin and still be compatible with the "official" BitCoin software.
Pages: « 1 ... 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 [417] 418 419 420 421 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!