Bitcoin Forum
May 09, 2016, 01:09:23 AM *
News: New! Latest stable version of Bitcoin Core: 0.12.1 [Torrent]
 
  Home Help Search Donate Login Register  
  Show Posts
Pages: « 1 ... 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 107 108 109 110 111 112 113 114 »
1761  Bitcoin / Development & Technical Discussion / Re: [RFC] Trusted build process on: January 31, 2011, 02:24:04 PM
I have an initial implementation of the VM based build process.

The code is here: https://github.com/devrandom/gitian-builder

You will also need a build descriptor file, which is here: https://gist.github.com/803438 .  The file wxWidgets-2.9.1.tar.bz2 goes in the ./inputs directory.

Very nice!

Is there a standard spot to put the build descriptor file in the source tree, or a standard name for it?  I'd like to commit the build descriptor file.

bitcoinex:  I'll tag the tree when I think we have a release candidate.  There are still a few loose ends I hope to tie up today:

1. New -testnet genesis block.
2. New block chain lock-in point.  I'm thinking block 105,000 is a good candidate for the lock-in point.
3. Compile/run/sanity test on Windows.  I am planning on spinning up an Amazon EC2 Windows instance to create a build/testing environment (although probably a VMWare image would be better-- can anybody help with this?  I normally don't do windows).

Am I missing anything else stopping a 0.3.20 release candidate?
1762  Bitcoin / Development & Technical Discussion / Re: [RFC] Testnet reset on: January 31, 2011, 01:07:31 AM
Yea, that's nice, but will we reset the main network the day someone pulls the same trick on it ?

No, if necessary we'd change the difficulty adjustment rules and make the code:

if (current block is > some_number)
  ... new rules for adjusting difficulty
else
  ... old rules for adjusting difficulty

I could have done that and kept the testnet block chain, but it is cleaner to just reset it with new rules.

And "pulling the same trick" means throwing an overwhelmingly massive amount of hashing power at the main network (like 16 times the current overall hashing power) for a significant amount of time, which is getting increasingly hard to do.
1763  Bitcoin / Development & Technical Discussion / [RFC] Testnet reset on: January 30, 2011, 06:25:56 PM
Difficulty on the -testnet is annoyingly high.   I propose resetting the -testnet with a new genesis block, and changing the -testnet rules for difficulty adjustment as follows:

1. Adjust difficulty on the testnet every 126 blocks (1/16'th the regular net adjustment).
2. Keep the "difficulty can adjust up at most *4", but remove the limit on how quickly difficulty can adjust down.  Minimal difficulty would remain the same.

Unless I hear howls of protest or better ideas, I'll generate a genesis block and submit a pull request with the changes.  I won't switch the -testnet faucet to the new chain until we've got 0.3.20 release candidate builds out.
1764  Bitcoin / Development & Technical Discussion / Re: Shy client patch on: January 30, 2011, 06:03:25 PM
This seems like a good idea; maybe not for the next (0.3.20) release, but 0.3.21.

1765  Bitcoin / Development & Technical Discussion / Re: 21million BTC is just over 51 bits of precision... on: January 29, 2011, 09:30:37 PM
That said, many libraries are smart -- such as jansson -- and will evaluate a number directly into an integer.
From the jansson docs:

"integer numbers whose absolute values are too large to be represented in the int type will result in an overflow error"

As I said in the thread about possibly changing the ECDSA curve bitcoin uses, programmers like to solve "problems" that they know they can solve and that they think will make things a little bit better.  But, in my humble opinion, unless you're solving an important problem changing things because you think you know how is often a bad idea.

This is a perfect example:  change the RPC to spit out 64-bit integers (or move to a new RPC that spits out integers) and anybody using jansson on a 32-bit-int platform will get an overflow error.

I kind of like tcatm's suggestion to define new RPC methods that specify a base unit using strings... but then I thought more about it:

We could use scientific notation, so 1 BTC would be 1e08 base units; then if we ever needed more precision the JSON interface wouldn't change, you could just specify 1e-03 as a value....
... but that's exactly what we have now.  1 BTC is 1e00, 1 base unit is 1e-08, and if we ever needed more precision the JSON interface is ready.
1766  Bitcoin / Development & Technical Discussion / Re: 21million BTC is just over 51 bits of precision... on: January 29, 2011, 03:27:44 PM
ribuck:

Accuracy/precision is a red-herring unless you're treating numbers as strings, since JSON-RPC numbers ARE ALWAYS double-precision floating point numbers (according to the JavaScript/ECMAScript spec).  Bitcoin could send a number that looks like 2100000000000001, but the code that interprets that JSON-RPC number will convert it into an inexact double-precision floating-point equivalent.  And then the code that displays that number will have to decide how to round and format that inexact floating point number and display it to the user.

When we need more than 51 bits of precision (wouldn't THAT be a fantastic problem to have!), then we'd HAVE to send numbers as strings, and have the JavaScript (or whatever) on the other end feed them into a bignum-type library to handle them.
1767  Economy / Marketplace / Re: ClearCoin: for safer bitcoin transactions on: January 29, 2011, 02:57:00 AM
Does the payment, after I've released it from ClearCoin escrow, show the bitcoin address from my wallet as the origin?  Or does ClearCoin simply send from its wallet balance and thus there's no direct link between my address when I sent the funds to escrow and the payment after it was released from escrow?

It sends it from the ClearCoin wallet.  It doesn't do anything special to try to 'mix' coins, though, so if you send ClearCoin exactly 11 bitcoins and then release exactly 11 it is pretty likely the transaction history would be easy to figure out.

Which reminds me... I released a new version of ClearCoin this week that lets you release an arbitrary amount.  So if you wanted to pay somebody 11 bitcoins but make it hard to figure out where the payment came from by looking at the transaction histories you could:

Fund the escrow account with, oh, I don't know, 20 bitcoins.
Release 11.
Let the escrow expire, and you'll be sent the leftover 9.
1768  Bitcoin / Development & Technical Discussion / Re: Please build and test: bitcoin 0.3.20 on: January 29, 2011, 02:29:25 AM
I haven't heard from anybody...  I'll ask again:  PLEASE HELP TEST
1769  Bitcoin / Development & Technical Discussion / 21million BTC is just over 51 bits of precision... on: January 29, 2011, 02:28:26 AM
luke-jr's patches got me thinking about whether or not passing double-precision values over the JSON-RPC api would ever cause problems.  I've convinced myself it isn't an issue:

JSON numbers are 64-bit double-precision floating point values, which have 53 bits of precision.

21 million bitcoins is actually 2,100,000,000,000,000 (2.1 quadrillion) of the smallest possible unit.  That's a bit over 251 -- you need just over 51 bits to represent them.

So, unless your JSON library is buggy, you should never run into rounding errors converting to/from JSON, even if you're sending 0.00000001 bitcoins.
1770  Bitcoin / Development & Technical Discussion / Re: Subcent Payments; RPC ver 0 vs 1 on: January 29, 2011, 01:42:13 AM
Can you back up and describe what problems your patches solve?

Here are the problems I care about:

+ If a user receives 1.000001 bitcoins, there is currently no way to transfer the entire amount somewhere else using either the GUI or the RPC.

+ If a user receives 1.000001 bitcoins, the GUI will tell them they have 1.00.

I don't care about systems without a FPU-- are there any such systems that bitcoin actually runs on?

I don't care about BTC vs TBC.
1771  Bitcoin / Bitcoin Discussion / Re: Tragedy Of The Commons on: January 29, 2011, 12:16:21 AM
We could look at the BitCoins that can be found as the resource. Everybody is going at it as hard as it as they can, driving the costs to prohibitive highs.

No, not "everybody" -- if it is too expensive for you, then you stop doing it.  Only the people who can generate most efficiently will stick around, and they'll stop "going hard" when the cost of adding more generating hardware is more than the value of the bitcoins they get.

Hopefully bitcoins will become more valuable over time (that will happen if people find them useful/valuable).

Quote
Other than usual in a ToC the resource can not be destroyed directly. I don't know yet, but perhaps it's usefulness could be greatly decreased, though. For example if the same computing power is needed to execute transactions, the transaction costs might be too high in practice (I admit I don't know how it works yet - is it easier to verify small transactions than big transactions?).

Mostly no, total value of the transaction doesn't matter.  A large-value transaction that is made up of lots of little transactions is more expensive to verify, but so is a small-value transaction made up of lots of tiny transactions.  And for both, if they're big enough they'll have to include a transaction fee to get accepted.
1772  Bitcoin / Bitcoin Discussion / Transaction statistics on: January 28, 2011, 01:50:05 AM
I made a google spreadsheet with the number of transactions occurring in the bitcoin block chain per month, and the total value of those transactions:
 https://spreadsheets.google.com/pub?key=0Ar4FtkFP4j73dDQyY3ZJWjdhMlBkZEtTSFJTZm9ieUE&hl=en&gid=0
(click on the BitcoinTransactions spreadsheet; the first is just another version of #produced over time)

Looks like bitcoin is growing nicely; I'm not sure why the big spikes in July and October...

I made the calculations using my bitcointools python code:
  https://github.com/gavinandresen/bitcointools/blob/master/statistics.py
1773  Bitcoin / Development & Technical Discussion / Re: Anonymity on: January 28, 2011, 12:36:12 AM
Do you really have to modify Bitcoin? Isn't it enough to send all coins to a separate wallet, delete original wallet, make empty wallet, send all coins back to blank wallet.

Obviously you'll want to automate. Do it every 6 hours or something.

That would make an odd transaction pattern-- e.g. if you started with 11 bitcoins in your wallet, you'd generate a chain of transactions that was:

A paid B 11 bitcoins
B paid C 11 bitcoins
C paid D 11 bitcoins
 ... etc, every 6 hours.  That makes it obvious what you're doing (a series of exactly-11-bitcoin transactions would be extremely unlikely).

Ideally, you want the graph of transactions involving your coins to be indistinguishable from a random sub-graph of the entire bitcoin transaction graph.  Creating lots of wallets won't help you do that; you need to mix your coins with other people's, so the mixing looks the same as just ordinary "X paid Y" transactions.

1774  Other / Off-topic / Re: Visualizing bitcoin as the "Planet Money" on: January 26, 2011, 12:13:09 AM
If you get sent 500 bitcoins, they can all be traced back to generation transactions, so you "own" a bunch of little pieces of land in bitcoin-world.
You can number generations that way, but once any multi-output transactions take place, any numbering is lost. "Which output got bitcoin #5"?

That's easy-- if #5 is the lowest ordinal piece of dust, then it goes to the first txout.  Etc.

It's all arbitrary but deterministic, and all recorded in the block chain, so you could define rules to trace every .0000000001-of-a-bitcoin forward through transactions.

1775  Economy / Economics / Re: RFC: Is there anything like a good government intervention? on: January 25, 2011, 06:10:20 PM
Answering the original question:

Arresting counterfeiters is a good government economic intervention.

A counterfeit-proof currency like bitcoin is better, of course.
1776  Other / Off-topic / Re: Visualizing bitcoin as the "Planet Money" on: January 25, 2011, 06:06:35 PM
The analogy doesn't stretch further than being a cute graphic. Individual bitcoins don't exist in any meaningful way, nor do the individual specks of bit-dust. There is no notion of 21 million coins, numbered 1 to 21,000,000.

Sure there is-- block 0 contains coins 0-49, block 1 coins 50-99, etc.

If you get sent 500 bitcoins, they can all be traced back to generation transactions, so you "own" a bunch of little pieces of land in bitcoin-world.
1777  Bitcoin / Development & Technical Discussion / Re: [RFC] Trusted build process on: January 25, 2011, 06:00:48 PM
ribuck:  I did misunderstand, sorry.

And maybe I should have been clearer:  the idea behind a reproducible virtual image is exactly to capture tools, version numbers, etc etc.   Auditors that create their own virtual images with the same CPU, OS, tools, etc. will be relied upon to confirm that yes, the bitcoin executables on the website were indeed built using standard compilers/linkers/etc from a particular source revision.

1778  Bitcoin / Development & Technical Discussion / Re: [RFC] Trusted build process on: January 25, 2011, 03:58:14 PM
ribuck:  what do you suggest instead?

I've read Ken Thompson's paper; that is what motivated me to propose a reproducible virtual machine image as the best we can do IN PRACTICE.

Yes, it is theoretically possible somebody might sneak bitcoin-stealing code into the gcc compiler.  Code that detects that bitcoin is being compiled and injects instructions to send coins to the sneaky gcc hacker.

In reality, we trust that the gcc maintainers are trustworthy and careful and that they care about their reputations.   If you don't trust them, what is the alternative?

Nefario: can "we" make building bitcoin easier?  I've been asking people to submit patches to the bitcoin linux build process, but so far none have been forthcoming...

devrandom:  Nice!
1779  Bitcoin / Development & Technical Discussion / Re: Please build and test: bitcoin 0.3.20 on: January 25, 2011, 02:36:34 PM
Will be -rescan option in GUI?

No.  Unless you're changing your wallet outside of bitcoin, rescanning isn't necessary.

It would be nice if the GUI had "backup wallet" and "merge backed up wallet with current wallet" options-- the "merge wallet" would need do a rescan.  Maybe next release somebody will implement those features...
1780  Bitcoin / Development & Technical Discussion / Re: Please build and test: bitcoin 0.3.20 on: January 25, 2011, 02:31:32 PM
After first time run db seems to have changed and no longer work with the old (0.3.19) version. This is as planned?

You must have compiled against a newer version of Berkeley DB, and it uses a new log file format.  Try removing the ~/.bitcoin/log.* files before running the older bitcoin version.

I changed build-unix.txt as you suggested.
Pages: « 1 ... 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 107 108 109 110 111 112 113 114 »
Sponsored by , a Bitcoin-accepting VPN.
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!