Bitcoin Forum
May 02, 2024, 01:15:37 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [56] 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 162 »
1101  Bitcoin / Development & Technical Discussion / Re: Predictability of the block generation time on: November 26, 2012, 09:26:25 PM
This would allow miners to cheat by choosing a timestamp.

Fact check:  miners can and do choose the timestamp.

Miners are free to change to timestamp within a certain time window.  That helps stir the block hash, when 32-bit nonce is not sufficient.
1102  Bitcoin / Press / Re: 2012-11-26 New Scientist - Virtual economy looms as digital cash grows up on: November 26, 2012, 09:08:28 PM
Indeed.  The email registration is free, just to read that article.  And it sends a message that they are writing good material.
1103  Bitcoin / Bitcoin Discussion / Re: Salient block countdown timer on: November 26, 2012, 08:55:39 PM
Someone also put up http://bitcoinclock.com/
1104  Bitcoin / Development & Technical Discussion / Re: Date for 25 BTC per Block on: November 26, 2012, 08:49:39 PM
I think there is a minor flaw in the design of the bitcoin; in calculation differency, the change should be accounted, so instead of "changing diff to a value which would have gave 10 minute interval last 2 weeks" the rule should be "changing diff to a value which gives 10 minute interval, if the calculation power changes as last 2 weeks".

I'm not convinced.  I think it's possible that your scheme could result in a less stable difficulty, with the difficulty adjustment continuously overshooting, overcorrecting.  Like watching a novice trying to steer a boat.

From a macro perspective that's precisely what happens anyway.

Just like anything in nature, or markets; there is never an equilibrium.  Any appearance of such is simply a frozen snapshot in time, that doesn't reflect reality seconds before or after the snapshot was taken.

Equilibrium is forever sought, never attained.

1105  Other / Beginners & Help / Re: Bitcoin Block Chain Download on: November 26, 2012, 07:55:48 PM
Is there any other site that hosts (regularly updated) blockchain files? I tried using bootstap.dat, but that still leaves ~17k blocks to download, and those take forever.

Read the post in this thread, immediately preceding yours Smiley

1106  Bitcoin / Mining / Re: Network Redundancy on: November 26, 2012, 07:53:53 PM
I was thinking about the ways of reducing the cost of running a full node. The only solutions I could think of also reduced the hashing power.

A full node just verifies and shovels blocks.  We have a few thousand full nodes (and need more!).  The whole point of bitcoin's Proof-Of-Work scheme is that data is cheap to verify, but expensive to produce.

A miner is different from a full node.

1107  Bitcoin / Project Development / Re: X-ISO4217-A3 (revised draft) Published on: November 25, 2012, 05:42:11 AM
Thanks for keeping us in the loop.  Good stuff.
1108  Bitcoin / Mining / Re: Network Redundancy on: November 25, 2012, 05:39:02 AM
The peer-to-peer network is more vulnerable to low level network attack, than the ever-discussed 51% hashing attack.

You can help, by running a full node that accepts incoming connections.

1109  Bitcoin / Development & Technical Discussion / Re: [PULL] private key and wallet export/import on: November 22, 2012, 09:42:45 PM
Hi!
Does this patch also exist for the current 0.7.1 version?

See https://github.com/bitcoin/bitcoin/pull/220

Introduces four new RPC calls:
* dumpprivkey: retrieve the private key corresponding to an address
* importprivkey: add a private key to your wallet
* dumpwallet: export the contents of your wallet in various ways
* importwallet: import/merge a dumped wallet into your own

dumpprivkey and importprivkey long been upstream, and in released software.

dumpwallet and importwallet are not yet merged.

1110  Bitcoin / Bitcoin Discussion / Re: [bitconf] State of the Coin 2012 on: November 22, 2012, 09:41:04 PM
Trying to figure out how this number makes sense..

2012: 60,896 trillion BTC sent

60,000 trillion, with only 10 million btc in circulation, with 365 days in a year...each bitcoin is transfered over 16,000 times a day.  If it was 10 times a day I could see it, but every bitcoin moves 16,000 times per day .. that doesnt seem to make sense.

It is a simple total of each bitcoin transaction's output values, from Jan 1 2012 to Sept 10 2012.

1111  Bitcoin / Development & Technical Discussion / Re: ANN: Announcing code availability of the bitsofproof supernode on: November 21, 2012, 08:13:57 PM
Here is one list: https://en.bitcoin.it/wiki/Protocol_rules
1112  Bitcoin / Development & Technical Discussion / Re: Ultraprune merged in mainline on: November 20, 2012, 11:14:10 PM
Pieter,

I am trying to make my blockparser utility work with your changes ...

In particular, it looks like blkXXXX.dat files do not obey the same structure as the
original blkXXX.dat files of the previous version (e..g sometimes the block magic
is not what I expect it to be).

They should be exactly the same as <= 0.7.1:  4-byte pchMessageStart, 4-byte size, data.

If that is not the case, there is a bug that should be fixed.



They block magic is not always pchMessageStart.

It's very often zero, but looking at things closer, it looks like it's always close
to the end of the blkXXXX.dat, and therefore, I suspect it's an EOF mark.

The older blkXXX.dat did end exactly on the last byte of the last block.

Any chance you can do a hexdump, or otherwise narrow down what is being seen?

Just re-reviewed the code.  Each record is written as described (4/4/block), with no EOF marks or anything else.

Perhaps your bitcoind crashed during a write, or a similar cause?  Try downloading again, and see if you still have a corrupted blk*.dat.
1113  Bitcoin / Development & Technical Discussion / Re: Ultraprune merged in mainline on: November 20, 2012, 08:22:18 PM
Pieter,

I am trying to make my blockparser utility work with your changes ...

In particular, it looks like blkXXXX.dat files do not obey the same structure as the
original blkXXX.dat files of the previous version (e..g sometimes the block magic
is not what I expect it to be).

They should be exactly the same as <= 0.7.1:  4-byte pchMessageStart, 4-byte size, data.

If that is not the case, there is a bug that should be fixed.

1114  Bitcoin / Development & Technical Discussion / Re: SSD - Downloading full blockchain on v0.7.1 on: November 20, 2012, 03:32:50 AM
Until version 0.8 arrives (very fast!), you may use the Bitcoin blockchain torrent to speed the big first part of your download.

Edit: heh, pekv2 and I posted at the same time, it seems.
1115  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 20, 2012, 01:51:40 AM
The clock might be wrong... but it's not gonna days or weeks wrong.

That's wrong assumption. If the battery on your motherboard is empty the date would be 1.1.1970. I can come up with some other scenarios where the date/time is seriously incorrect.

You're stretching.  Anything is "possible" but using a 0.01% case to justify giving new users a bad experience is not reasonable.

1116  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 20, 2012, 12:27:30 AM
I've been battling this concept in Armory with its deterministic wallets, for a while.  I implemented "blockCreated" and "timeCreated" variables for each address, but I have been hesitant to actually use them for anything.  Because, I determined that getting it wrong was not worth the performance benefit of when it is right:  if you trust the timestamps are created and stored correctly, but it turns out that something was wrong (incorrect clock when it was stored), the user could be missing a big chunk of their wallet and it could be a mess trying to figure out what happened (during recovery of a deterministic wallet, that is).   Plus, even if it is right, unless the user knows exactly how much they had they don't know that it's right unless you do the full scan anyway.  At least for right now, doing the full scan isn't that much more cumbersome than a partial scan, so it's easier to just do it.

The clock might be wrong... but it's not gonna days or weeks wrong.

You have to include variability anyway, because blocks can vary.  So given birthday X, start scanning at X minus 2 days, or X minus 1 week.

1117  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 19, 2012, 08:54:11 PM

Birthday is of continuing relevance to:  new users, new wallets.

1118  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 19, 2012, 07:15:48 PM
Can you elaborate?

It has significant advantage as your wallet has been created recently. You created wallet around block 200k, so you need to synchronize only around 10k of blocks (20x speedup). However in few years of usage, on block 1M, you'll need to synchronize 800k of blocks. Then the advantage of timestamp is almost neglible, because the speedup will be only 0.2x (probably a lot less, as blocks are bigger and bigger).

All this is predicted on an invalid assumption:  the common case will be older, existing bitcoin users carrying around one big wallet.

First, wallet creation date is much different than individual key creation dates.

Keys are constantly created, therefore a portion of the wallet state is always created recently.  As blocks get bigger and bigger, key birthday reduces the number of keys one must scan in each block, especially if key retirement is also supported.

Long term you will have a rolling window of keys, no matter when the wallet is created.  Key birthdays will always be relevant and useful, for this reason.

Furthermore, there will always be new users creating new wallets, and users with multiple wallets.

1119  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 19, 2012, 06:38:05 PM
Generally speaking, yes, you should store the key birthday (or seed birthday) somewhere.  When [re]scanning, this makes a huge difference in startup and network-sync times.

While it might make a huge difference now (because seeded private keys are relatively new concept), it won't make a big difference in a future. I agree it might help to avoid unnecessary rescanning, but relying on that feature is flawed ...

Can you elaborate?

All the major client developers agree this is a good idea.  The benefits into the future increase, as the block chain gets larger.  It makes an even bigger difference in the future.

1120  Bitcoin / Development & Technical Discussion / Re: Hardware wallet wire protocol on: November 19, 2012, 04:47:05 PM
Anyhow, is it possible to know the birthdate of a wallet ? By this I mean the date when the wallet seed was created.
Is there a real-time network-synced clock on the device that could be remember this and expose it? Or the host computer could give the device the current time perhaps.

Generally speaking, yes, you should store the key birthday (or seed birthday) somewhere.  When [re]scanning, this makes a huge difference in startup and network-sync times.
Pages: « 1 ... 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 [56] 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 ... 162 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!