Bitcoin Forum
May 25, 2024, 02:45:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 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 ... 186 »
441  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 26, 2014, 07:20:49 PM
is the datadir flag still working? i'm on win7 and armory is ignoring the datadir location and using the default location.

I just noticed yesterday that --datadir fails if the target directory doesn't exist yet.  Rather than bailing, it just switches to using the default directory.  We're still not sure exactly how we want to deal with that yet.

Besides that, I've been using --datadir constantly, and it works fine (for me)
442  Bitcoin / Armory / Re: Whats wrong with my Bitcoin-Qt? on: March 26, 2014, 05:35:19 AM
..for some unknown reason it takes about an hour to download one day of the blockchain
..its taken me several days, two to three hours at a time to download about five days worth of blockchain

I recently downloaded the blockchain on an old computer, the speed you quoted sounded about right on a not-so-recent computer.

I remember the first time i installed bitcoin-qt and armory on my previous Ubuntu install
i was able to download the entire blockchain in a day.

I remember downloading the blockchain 12 months ago, it took less than half a day Grin



The new torrent download takes me a couple hours.  But then it has to process the bootstrap file which takes a few hours.  And then Armory has to build its databases which takes another couple.  I think most people will have slower internet than me, but it will still usually take less than 8 hours for that bulk download.

The key point though is:  the torrent download guarantees you can max out your bandwidth during download.  When you download through Bitcoin Core, you are downloading from a random peer that might be slow, or periodically stop responding.  I heard the devs were working on a parallelized downloading to mitigate this problem ... well we basically implemented that for them by doing the torrent thing Smiley

Let me know how it goes!
443  Bitcoin / Armory / Re: Whats wrong with my Bitcoin-Qt? on: March 26, 2014, 04:07:48 AM
You sound like a perfect candidate to try out the new BitTorrent download feature in the latest Armory testing version!

https://bitcointalk.org/index.php?topic=522866.0

It will download the bootstrap.dat file from BitTorrent, then bootstrap Bitcoin-Qt/bitcoind off of it.  However, it only works if Armory is managing bitcoind for you. 

If you already have part of the blockchain downloaded, I recommend renaming your .bitcoin directory so that Armory will start totally fresh.  If it doesn't work, you can move it back and resume your multi-week download. 

And for your information, I integrated torrent for exactly this reason.   I had a neighbor complain it took 58 hours to synchronize.  And recently, I've been annoyed at how long it takes just to "top-off" the blockchain when it's off for a few days.   At least while Armory requires running a full node, we had to make this easier...
444  Bitcoin / Armory / Re: Armory - Discussion Thread on: March 25, 2014, 03:31:04 PM
Determining change outputs in a vacuum is challenging.  There's only so much you can do to take a given transaction, and figure out which output is the change, which is is the destination.  When you start messing with custom change addresses, etc, the existing algorithm certainly will get it wrong.  We're aware of that.

But there isn't much more we can do about that, unless we explicitly add an extra data store just to store those details when the transaction is made.  But even if we did that, it wouldn't help in situations where you have multiple nodes all watching a wallet, unless you explicitly try to synchronize that data between them.  I'm not sure there's really a robust & reliable way that doesn't involve a ton of extra complexity. 
445  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 25, 2014, 02:07:06 PM
I'm having all sorts of issues trying to move coins from a hot wallet to my cold storage since moving to this release + 0.9.0 BitcoinQT.

This appears to only impact when i do a one to many transaction i.e. Sending from one source address to multiple output addresses.

Anyone else encountering the same issue?

Also which log file should i be checking for.

Just use Help->Submit Bug Report :-)
446  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 25, 2014, 04:36:04 AM
I dont think I like the "secure updater" thing. It sounds dangerous.
Also, you defenetly should implement Multisig to armory (a nice gui that would allow a user to generate a multisig address)

I would try this version but I have bitcoins that I dont want to risk so I'll wait for a stable release Smiley

Not sure why it sounds "dangerous".  It's exactly the opposite.  It lets you download the latest version and verifies all the digital signatures for you, so you don't have to install and figure out how to use GPG, and then find our GPG key and verify fingerprints.  (granted, you should do that the first time you get Armory, but after that assuming you got a good copy, you will always be able to get the next version with the same security but without any effort).  We are not implementing automatic updates yet.  We're simply providing a mechanism for downloading signed installers and checking the signatures for you.

Multisig is my top priority after this version is out.  Coming soon!
447  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 24, 2014, 10:39:29 PM
So far, everyone who has reported this "image not found" error on OSX is running 10.9.2.  I think.  Please tell me if you see this error and are not running 10.9.2.

The error is not a missing file, because the exact same package seems to work on other versions of OSX.  It's that the same dynamic object used by earlier OSX versions doesn't seem to be compatible with 10.9.2.  It's possible we just might need to build a 10.9.2-specific version.  Ugh! 

Go figure I bet it's finally working on 10.9.1 and then Apple goes ahead and makes yet another incompatible version!
448  Bitcoin / Armory / Re: Armory's Random Number Generator (Is Armory Broken?) on: March 24, 2014, 08:10:39 PM
If I simply don't trust any computer-generated random number, is it possible for me to use my own random number (e.g. by trowing dice) as deterministic wallet seed?

See post #7 in this thread.

Thanks, so this is a new function. I remember that I have asked the same question 2 year ago.

Kind of.  The code is technically the same, I just pulled out the chunk that converts a seed into paper backup into a reusable function.  It's not much easier to access via command-line.  We actually used the technique with a deck of cards recently to generate some new wallets, and it turned out to be pretty darned easy if you were in linux.  You only needed to install the offline package into a live session, and then open a shell in the /usr/lib/armory directory. 
449  Bitcoin / Armory / Re: Armory's Random Number Generator (Is Armory Broken?) on: March 24, 2014, 05:54:23 PM
If I simply don't trust any computer-generated random number, is it possible for me to use my own random number (e.g. by trowing dice) as deterministic wallet seed?

See post #7 in this thread.
450  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 24, 2014, 05:48:39 PM
If you don't use P2SH anywhere, it works fine.

If you use P2SH, it will likely "work", but the offline computer will show useless info for any P2SH addresses.  I don't recommend using it, since part of the security comes from being able to review the entirety of the tx on the offline computer.

451  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 23, 2014, 11:13:55 PM
That's enough information to know where to look at.

Is it?  I don't see any attempts to open 0.90.99.X in that log file.   

Also, is it correct it's on a system with 512 MB of RAM?    Are you trying to run this online?  That might be challenging, regardless of the reason it's not loading.  Also, I notice it is XP -- has anyone else confirmed that the testing version runs on XP?
452  Bitcoin / Armory / Re: Armory - Discussion Thread on: March 23, 2014, 10:00:40 PM
i've had that happen before.

from the main window, double click on subject wallet.  toward the top of the opened window there's a field called "addresses used".  there's a blue link # in that field which will open up another window called "Extend Address Pool".  try computing an extra 1000 addresses.

what's happened is while Armory is supposed to automatically "extend" it's offline address pool to match that of the online WO wallet, it doesn't.  there is a ceiling where it stops.

That happens if you use hundreds of addresses and then restore from paper backup.  Of if you use hundreds of receiving addresses but do no spending in that time.  But absent those conditions, you shouldn't ever have to manually extend the address pool.  If those conditions do match yours, that advice will work.  But very few people run into that, so it's not my normal first round of advice.

It sounds like this situation is a freshly-made wallet.  Have you used it for any other transactions?   Are you sure that the wallet IDs are the same?  Rather, are you sure you're creating the transaction with the same wallet as you have on the offline computer?
453  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 23, 2014, 07:57:47 PM
Try it with --test-announce, then without.

--test-announce is became irrelevant once I published the high-security-signed announcements.  Running with and without it should be identical.

If anything, run with --skip-announce-check to prevent any announcement stuff from happening.  But I suspect it's something else -- I'm pretty sure the announcement stuff fails gracefully. 

If Armory shows up in the task manager briefly, it's probably opening the log file and dumping errors before quitting.  You need to look at the log that it wrote to:

C:\Users\<user>\AppData\Roaming\Armory\armorylog.txt


Btw, about the filenames in the program files directory:  it's because you don't have file extensions shown.  That directory has files "ArmoryQt.exe.txt" and "ArmoryQt.exe".  But when you haven't told Windows to explicitly show you extensions, they chop off the .txt and .exe respectively in the file browser.  So the text file looks like a .exe and the .txt looks like no extension...

That just made me realize you could probably fool someone even moderately tech savvy, by giving them a file.txt.exe and they might double-click on without thinking, since it's "obviously" a txt file...
454  Bitcoin / Armory / Re: Armory Question on: March 23, 2014, 04:29:31 PM
When you use an end-to-end application for handling transactions like Armory (instead of hacking together multiple tools, scripts ,etc), you don't have to worry about this.  You are talking about change addresses, and all that is handled securely and transparently by serious wallets.  Using manual tools where you have to think about these things can lead to lost coins.

Armory creates the change address for you from the same wallet that is protected by your paper backup, and automatically sends the change there.  It is usually hidden from you because it is an unnecessary detail, and doesn't require any action on your part.  However, if you examine the transaction info, you will see the change address in the outputs list, with the wallet ID next to it (showing you it's money coming back to your wallet, not going somewhere else).

455  Bitcoin / Development & Technical Discussion / Re: Pay-to-Revoke using the Bitcoin Network on: March 23, 2014, 03:57:30 AM
Quote
In general there is no safe way to include revoke&replace in the same operation, since it would make the revocation certificate exactly as sensitive as the private key itself.

However, you scheme actually makes the private key of the pay-to-revoke bitcoin address exactly as sensitive as the (PGP) private key itself. If I could safe keep a bitcoin private key, I could do the same for the revocation and replacement cert.


Not necessarily.  The pay-to-revoke payment address may have different security properties than the signing key(s) being protected.  For instance, I have a single GPG private key for signing company software releases, but the payment goes to a 3-of-5 address controlled by the directors of the company.  Also, a compromised pay-to-revoke address (without the protected signing key) does not give the ability to revoke the key... it simply nullifies the advantage this scheme has over the way revocation is done now, but doesn't really make it any worse.

Though, if the attacker compromises the directors' 3-of-5 address, you are probably totally screwed in so many other ways...
456  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 22, 2014, 11:23:16 PM
Installed this on a Ubuntu system and Win7 system (both 64bit).

The default installation gave me announcements on the ubuntu version but nothing on the Win7 version.


Strange.  Does the announcement tab similar show nothing on Win7?  Or you just didn't get the popups?  There should be some messages in the logfile that start with "announcefetch.py".  Right now the first URL always fails, the second one [should] always succeed.
457  Bitcoin / Development & Technical Discussion / Re: Pay-to-Revoke using the Bitcoin Network on: March 22, 2014, 11:09:04 PM
Wallet/Address issue

I don't know a lot of the code or how it works, a total newbie, making it a simple as possible.

Some thing I thought about lately, a 3 key system for address locking 3+ address's to a user.
...

This is really off-topic for this thread.  You should be aware that my idea is not about protecting Bitcoins or Bitcoin private keys, but about protecting a private key that is used, say, to sign software installers, etc.
458  Bitcoin / Armory / Re: Armory - Discussion Thread on: March 22, 2014, 08:49:10 PM
It is possible to delete imported address with private key from encrypted wallet without entering the password. I dont know how this is possible - it shouldnt be that way. The private part of wallet should be encrypted so it should not be possible to mess with it without password.

To be clear, this is just like deleting an encrypted file on your hard-drive.  You can still see the filename and know where the file is while it's encrypted, and you don't need to decrypt it to simply delete it or overwrite it with new data.

Arguably though, certain operations like that maybe should soft-require a password to prevent legitimate users from doing it accidentally.  But it's really only a soft-barrier:  there's nothing stopping you, an attacker, or malware from opening the wallet file and deleting that entry.

459  Bitcoin / Armory / Re: Armory keep crashing with 'BDM was not ready for your request! Waited 20 sec.' on: March 22, 2014, 02:43:54 PM
Just an update on this:  we believe that most of the crash-when-reach-99%-scanning problems are related to the same issue, and is resolved in the latest testing version:

https://bitcointalk.org/index.php?topic=522866.0

Please try it out and post here or there with your results.  We're pretty excited that we think we've isolated and neutralized this bug!  It would great to know if there's still cases that aren't fixed.
460  Bitcoin / Armory / Re: Please Help Test Armory 0.91-beta! on: March 22, 2014, 02:39:28 AM
I'm getting this:

Code:
Traceback (most recent call last):
  File "armoryqt.py", line 38, in <module>
    from PyQt4.QtCore import *
ImportError: No module named PyQt4.QtCore

The previous version worked fine so not sure what that's about.  Don't really know how to fix it either...


Uhhh, gonna need more details.   What OS and version? Did you build it yourself or use our package? 
Pages: « 1 2 3 4 5 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 ... 186 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!