Bitcoin Forum
May 10, 2024, 01:50:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 107 108 109 110 111 112 113 »
1661  Bitcoin / Bitcoin Discussion / Re: Version 0.3.20 on: February 21, 2011, 11:39:28 PM
But bitcoind is 0.3.20.00 and requires MSVC libraries. Undecided

Did I put the wrong bitcoind.exe in the Windows exe and/or zip?

D'oh!

Companies I've worked for in the past had a rule-- programmers were not allowed to test their own code.  I'm still looking for people to volunteer to be dedicated quality assurance testers (and a quality assurance manager to organize them) to help keep this type of thing from slipping through.
1662  Bitcoin / Bitcoin Discussion / Re: Version 0.3.20 on: February 21, 2011, 09:56:47 PM
First:  the bitcoin.org homepage links will be updated as soon as sirius has a chance to wake up, read his email, and make the changes.

Thank you for new release! I have two little questions:

- Windows build use little different skin than previous version. Is this a mistake or intention? Nothing which I really care about, I just noticed.
- Is there a reason why "bitcoin.exe -datadir=c:\bitcoin2 -nolisten" don't start second client instance?

A different skin for the Windows build is from upgrading the wxWidgets used to build (2.9.1 instead of 2.9.0).

Did anybody test the -nolisten with the GUI bitcoin on Windows?
I believe there is windows-specific code for checking to see if another bitcoin is running that looks at window titles; file an issue at github if -nolisten isn't doing what you expect.
1663  Bitcoin / Bitcoin Discussion / Version 0.3.20 on: February 21, 2011, 08:52:54 PM
Binaries for Bitcoin version 0.3.20.01 are available at:
  https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.20/

There were several changes and additions to the JSON remote-procedure-call interface;
there are no significant user interface changes.  See:
  http://bitcointalk.org/index.php?topic=3473.msg48839#msg48839
... for details.

This version does fix one significant denial-of-service attack (earlier versions of
bitcoin could be caused to crash due to running out of memory by a remote
attacker).

SHA1-checksums for the binary files are:
bitcoin-0.3.20-linux.tar.gz     7dfbc05b36112f59886a29f044cfd21c6c253169
bitcoin-0.3.20-win32-setup.exe  2a4affd92dd11e0b759f90a8fa4bead58bdbf7b4
bitcoin-0.3.20-win32.zip        7bf306554092e742d076d4157aaa077d95de6102
bitcoin-0.3.20-macosx.zip       47ca28454e7ea0b576b80905353d1cea024e53fe
1664  Bitcoin / Development & Technical Discussion / Re: Issues building bitcoin on Windows 7 on: February 21, 2011, 01:26:14 PM
Oops, sorry-- I forgot to change the admin password.  The correct pw for that instance is:
  penguinsrule


I change the password to match the MinGW VM and updated the AMI:
  ami-d621d2bf    982440761210/BitcoinVC10
Admin password:  bitcoin development

You should change the password as soon as you login or make sure you use a security group that only allows your IP address to access the virtual machine.

1665  Bitcoin / Bitcoin Discussion / Re: Test bitcoins - decission? on: February 21, 2011, 05:03:59 AM
So can we count on this that current TBTC (test bitcoins) will NOT be reseted? Smiley

No.  You should expect the testnet to be reset, if for no other reason than to keep people from using it as a "real" currency.
1666  Bitcoin / Mining / Re: Why no GPU support in the standard client ? on: February 21, 2011, 01:05:52 AM
As I said I think an ideal solution would be having an official miner as a separate application, where you could chose between what miner you want to use (miners would be included in the installation package).

Good idea.

Patches welcome, as long as they're nice and stable and have had a fair bit of testing...
1667  Bitcoin / Development & Technical Discussion / Re: Prize for importing private key on: February 20, 2011, 10:49:17 PM
Bounty for the 50 coins. The first person to get a patch merged by Gavin into the core software that allows import/export of wallet files, via the GUI on all 3 supported platforms, defined in the following manner wins the coins. Obviously not very much but I guess it's symbolic Wink

The format should be a CSV file (unix line endings) that looks like this:

Code:
base58 encoded privkey,block number,block number....
base58 encoded privkey,block number,block number....
base58 encoded privkey,block number,block number....

where the block numbers are the blocks in which there are unspent outputs sending to that key.

CSV file with the private key and block numbers is a good idea, although for it to be a valid CSV file then it needs to have a fixed number of columns.

I'd modify the design slightly to be just:
base58 encoded privkey,block number
... where block number is the block number of the earliest input (that'll save rescanning time-- you probably always want to rescan from the earliest block number, anyway, in case more payments were sent after you exported the key).

Also what do you mean by "export" -- write and then remove the keys from the wallet?  Write a newly generated key and generate a payment-to-that-key for a given amount of coins?

I think any code that removes keys from the wallet (or generates payments to keys that are never added to the wallet) needs to be structured as two distinct steps:
1. Write the keys to <destination>
2. Read <destination> to make sure it is valid, and, if it is, delete the corresponding keys from the wallet (or generate the send-to-self txn).
1668  Bitcoin / Development & Technical Discussion / Re: Issues building bitcoin on Windows 7 on: February 20, 2011, 06:35:09 PM
Here's the public AMI for the dodgy 0.3.20 VC10 build:
  ami-d621d2bf    982440761210/BitcoinVC10

Bitcoin source is at c:\bitcoin
(all the other dependencies are in the root c:\, too).
Administrator password is:  bitcoin development
1669  Bitcoin / Development & Technical Discussion / Re: Issues building bitcoin on Windows 7 on: February 20, 2011, 03:03:38 PM
Gavin, do you have / can you make public the image for the dodgy 0.3.20 VC10 build? I'd like to have a look and compare it to my home build to see if I can reproduce that rendering artifact problem. Thanks.

Yes, I have the VC10 VM.  I am hesitant to make it publicly available because it has a copy of Visual C++ 2010 Express installed, and I don't want Microsoft to sue me for redistributing their software without permission.

I'll uninstall it from the VM and then make the image public; you'll have to download and install (and agree to the license) Visual Studio Express yourself to get it working.
1670  Bitcoin / Development & Technical Discussion / Re: 0.3.21: Base units for JSON-RPC (Please test!) on: February 20, 2011, 04:18:30 AM
Can you post examples of requests/responses with the "old" JSON-RPC and your new JSON-RPC?

I'm still firmly against this change-- it seems to me you are "solving" a non-problem.
1671  Bitcoin / Development & Technical Discussion / Re: Is it possible for two private keys/clients to generate identical BTC address ? on: February 19, 2011, 09:58:31 PM
A lot of coulds there...what is stopping this from happening?

There are approximately 2160 things higher on the development priority list.
1672  Bitcoin / Development & Technical Discussion / Re: Is it possible for two private keys/clients to generate identical BTC address ? on: February 19, 2011, 08:12:37 PM
A committed individual or organization could easily aquire network storage in the Petabytes.  I think that would be more than enough to get a sizable operation started.

1 petabyte is 1015 bytes.

There are 2160 possible BTC addresses, each of which is 160 bits == 20 bytes long.

So to store all of them you need 2160x20 bytes, which is 29,230,032,746,618,058,364,073,696,654,325,660 petabytes.

1673  Bitcoin / Development & Technical Discussion / Re: Issues building bitcoin on Windows 7 on: February 19, 2011, 06:20:10 PM
Gavin, is this windows/mingw build environment publicly available?

Yes, it is public Amazon ami-2edd2e47   named  982440761210/BitcoinMinGW

The linux32 and linux64 amis I used to build the linux releases are also public.
1674  Bitcoin / Development & Technical Discussion / Re: Windows users: does 0.3.20.01 work for you? on: February 19, 2011, 05:53:52 PM
Appears to work well, but i still get the wxWidgets debug alert on Win7x64

Did you get a debug alert with bitcoin 0.3.19 or earlier?
And could you post a screen snapshot (or, even better, file an issue at https://github.com/bitcoin/bitcoin/issues )?
1675  Bitcoin / Development & Technical Discussion / Re: Getting the foundations of bitcoin looked at by Bruce Schneier on: February 19, 2011, 05:48:47 PM
Frankly, I'm not sure how I feel about this.

I absolutely positively want more scrutiny of both bitcoin's source code and the underlying cryptographic concepts.

However, I don't think offering a token amount of money (even in the form of bitcoins) is appropriate.

A real, professional security review of bitcoin would take a lot of time and a lot of money.  I understand that's not what is being asked, but asking Mr. Schneier to write about bitcoin is really an irrational "Appeal to Authority" -- I think he'd say that any cryptography-related technology is never proven secure, but only gains trust by having multiple people and groups of people look at it, imagine potential attacks, try to attack it, etc.

Or, in other words, if he writes an article about bitcoin now I think the summary would be "interesting new technology, doesn't appear to be a scam, worth keeping an eye on."   I think he'll write that article soon without any prompting from "the bitcoin community," just given the level of buzz bitcoin is generating the last month or two.  I don't think a few hundred bitcoins will motivate him to write the article any sooner.
1676  Bitcoin / Development & Technical Discussion / Windows users: does 0.3.20.01 work for you? on: February 19, 2011, 01:36:25 PM
The only thing stopping me from announcing 0.3.20 "Final!" is confirmation from Windows users that switching to the mingw build process fixed the rendering issues.

So:  if you're a Windows bitcoin user, please install the latest 0.3.20 from SourceForge and let me know how it works for you.
1677  Bitcoin / Bitcoin Discussion / Re: Bitcoin 0.3.20 release candidate available for testing on: February 19, 2011, 12:21:36 AM
Version 0.3.20.01 is now at:
  https://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-0.3.20/

Differences with the first release candidate 0.3.20:

+ Windows built with mingw instead of Visual C++ (my fingers are crossed that fixes the rendering issue)
+ Fix for a denial-of-service attack reported in IRC
1678  Bitcoin / Bitcoin Discussion / Re: Bitcoin 0.3.20 release candidate available for testing on: February 19, 2011, 12:16:09 AM
Has anyone successfully generated a block while using this?

I've generated lots of blocks on the new -testnet.
1679  Bitcoin / Development & Technical Discussion / Build virtual machines (Amazon EC2 ami images for 0.3.20) on: February 19, 2011, 12:14:17 AM
I've made public the windows, linux32 and linux64 Amazon Machine Images used to build bitcoin 0.3.20.  If you have an Amazon EC2 account, you can launch them and have your own working build environment for linux or windows bitcoin (paid for by the hour).

They are:
  ami-4adf2c23        32-bit Linux (Ubuntu 9.04)
  ami-12df2c7b        64-bit Linux (Ubuntu 9.04)
  ami-7a21d213       Windows (with MinGW)

All created in the us-east-1b zone (I don't know if Amazon automatically migrates public AMIs across the world).

After launching the Linux VMs, you login as root (using the ssh keypair you specify when you launch).

After launching the Windows VM, you connect via Remote Desktop and then login as Administrator, password "bitcoin development" (you should change that for your instance as soon as you login, of course).

They contain bitcoin, bitcoind, and everything needed to build them, already built.  You could launch instances and try to generate coins, but that's not cost-effective.

(Updated 22 Feb with 0.3.20.01 Windows AMI)
1680  Bitcoin / Development & Technical Discussion / Re: Issues building bitcoin on Windows 7 on: February 18, 2011, 05:50:35 PM
I just committed (to git and svn) an updated build-msw.txt
Thanks to m0mchil for putting together a working windows/mingw build environment.

And I'll be making the 0.3.20 build environment virtual machines (for Windows, Linux32, and Linux64, in the Amazon EC2 cloud) public, hopefully, if all goes well, later today.
Pages: « 1 ... 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 107 108 109 110 111 112 113 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!