Pages:
Author

Topic: Armory 0.93 testing release! (with 0.05 BTC bug bounty) - page 8. (Read 35695 times)

full member
Activity: 120
Merit: 100
Java Coder
I have a small feature request, when importing privkey to wallet, can an option to not rescan the DB for transactions be added for expert users?
legendary
Activity: 3738
Merit: 1360
Armory Developer
I notice that this version is 64-bit only (I haven't checked earlier 0.92.99 releases though). Was that intentional? Historically the installs have been 32-bit executables, even on 64-bit Windows. Do you plan to drop support for pre-built Win32 binaries? Just wondering...

(also, an extremely minor nitpick: the installer installs this 64-bit executable into the x86 Program Files directory, probably because the installer itself is a 32-bit app and its directories are being virtualized by Windows)

LMDB maps the entire underlying dataset in RAM. Can't address 30GB of data in x86. And that's just fullnode, supernode requires 3x that currently. For 0.93.1, fullnode should be around 120MB so it could function in x86, but we still do not plan on releasing x64 Windows builds for online Armory. There will be a x86 Windows build to support people using Windows on their offline signer (hopefully I'll manage something for WinXP), but it won't be able to sync due to LMDB's RAM requirement.
hero member
Activity: 672
Merit: 504
a.k.a. gurnec on GitHub

I notice that this version is 64-bit only (I haven't checked earlier 0.92.99 releases though). Was that intentional? Historically the installs have been 32-bit executables, even on 64-bit Windows. Do you plan to drop support for pre-built Win32 binaries? Just wondering...

(also, an extremely minor nitpick: the installer installs this 64-bit executable into the x86 Program Files directory, probably because the installer itself is a 32-bit app and its directories are being virtualized by Windows)
legendary
Activity: 1022
Merit: 1000
Wrong link in Secure Downloader

Replaced by  https://bitcoin.org/bin/bitcoin-core-0.9.3/bitcoin-0.9.3-linux.tar.gz

Quote
The download completed but its cryptographic signature is invalid. Please try the download again. If you get another error, please report the problem to [email protected].

The downloaded data has been discarded.


Quote
Download information for Satoshi version 0.9.3:

Operating System:
Ubuntu 14.10 64-bit
Installer Filename:
bitcoin-0.9.3-linux.tar.gz
Download URL:
https://bitcoin.org/bin/0.9.3/bitcoin-0.9.3-linux.tar.gz
Verified sha256sum:
c425783b6cbab9b801ad6a1dcc9235828b98e5dee6675112741f8b210e4f65cd
legendary
Activity: 3738
Merit: 1360
Armory Developer
I guess what I'm trying to say, can the notification pop as it detects new transactions while it's syncing, and then let you quickly flip through the notifications.

No history is displayed during syncing. The code is built on the assumption that it won't be displaying anything to the user until the DB is ready. Changing that now would be painful, and doesn't justify the meager benefit.

Is this common or something? Are you suggesting that I delete the Bitcoin Core blockchain and let the entire thing re-download?

Yes

My questions:

1.) Would it be possible to import a supernode DB someone else built?
2.) If yes, would the ram requirements be signifficantly lower just to run and maintain the DB after?
3.) Are there any UI changes when running --supernode? Is there a simple way to e.g. check address balances? Or would I basically have to create a new watch only wallet, import the address and the advantage would be instant showing of balance without rescan?

1) Yes. It will need to be using the page size as your machine's native page size, so there may be some limitation from one OS to another.
2) Yes and no. The DB will access less data to update the last few blocks, but a lot of that data is spread randomly around the DB, so unless you have a SSD or tons of RAM, expect extreme updating times regardless.
3) No changes in UI yet. Any wallet or private key you import will render quasi instantly (time to compute the paged history). We had planned on adding a plugin to quick look at any address, but that was put on hold. Maybe for 0.93.1

full member
Activity: 226
Merit: 100
Hi,

I'm responsible for the DB code. For those who care, it takes me 3h30 to build supernode, which approximates 90GB with the current blockchain size.

If you have less than 16GB of RAM and a HDD, do not expect supernode to build under a week. Your machine can't handle it. This DB type tracks ALL transactions in the blockchain, it's meant for heavy duty servers. You should at least try and see how long it will take your system to build fullnode before thinking of going with supernode.

The obvious bottleneck is I/O. Moreover, LMDB maps its whole dataset in RAM, so a machine with little RAM and a swapping file on a HDD will get crushed.

I tried to start with supernode and ran into performance issues as described by others. I only have 4gb ram so I guess it is to be expected according to gotapigs post above.

I did not read through the whole thread and maybe the answers are given already...

My questions:

1.) Would it be possible to import a supernode DB someone else built?
2.) If yes, would the ram requirements be signifficantly lower just to run and maintain the DB after?
3.) Are there any UI changes when running --supernode? Is there a simple way to e.g. check address balances? Or would I basically have to create a new watch only wallet, import the address and the advantage would be instant showing of balance without rescan?
sr. member
Activity: 306
Merit: 250
Actually, I had intended to put this in then forgot.  I actually implemented this in another branch and it turned out to be somewhat simple.

However, it looks like we're just going to lock down 0.93 right now and add that suggestion to 0.93.1.  Actually 0.93.1 is very close to done and can go into testing as early as next week (assuming we actually release 0.93 this week)




Thanks! I appreciate the response.

legendary
Activity: 1428
Merit: 1093
Core Armory Developer
Actually, I had intended to put this in then forgot.  I actually implemented this in another branch and it turned out to be somewhat simple.

However, it looks like we're just going to lock down 0.93 right now and add that suggestion to 0.93.1.  Actually 0.93.1 is very close to done and can go into testing as early as next week (assuming we actually release 0.93 this week)


sr. member
Activity: 306
Merit: 250
I think we're finally nearing a release.  I will consider this a proper release candidate, to be renamed 0.93 if no show-stoppers crop up:

As usual, get it through the secure downloader from an existing (trusted) Armory instance.  Only use these links if you have no other choice.



Not a showstopper but I had recently requested the ability to sort the wallets into a specific order. If you have several wallets it would be nice to be able, for instance, to put active wallets at the top and cold wallets at the bottom. Any thoughts on this?

legendary
Activity: 1762
Merit: 1011
Chances are your copy of the blockchain is missing a bunch of blocks. You should do a factory reset.

Is this common or something? Are you suggesting that I delete the Bitcoin Core blockchain and let the entire thing re-download?
sr. member
Activity: 290
Merit: 262
Is maith liom bitcoin
I did have a question though. When I get a payment in when connected, it flashes into the little notificaton area.

That's the notification on zero conf

However, when I'm syncing, going through the blocks and seeing transactions in,it's in the list, but those notifications aren't there. Is that supposed to be the way?

Not sure what you are trying to say. Can you elaborate?

I guess what I'm trying to say, can the notification pop as it detects new transactions while it's syncing, and then let you quickly flip through the notifications.
hero member
Activity: 702
Merit: 500
I did have a question though. When I get a payment in when connected, it flashes into the little notificaton area.

That's the notification on zero conf

However, when I'm syncing, going through the blocks and seeing transactions in,it's in the list, but those notifications aren't there. Is that supposed to be the way?

Not sure what you are trying to say. Can you elaborate?

im trying to test the mac version and it crashes within seconds of being started (every time).  (Yosemite 10.10.2)

do you already know about this or do you want any crash logs?

thanks

-- Jez
legendary
Activity: 3738
Merit: 1360
Armory Developer
I did have a question though. When I get a payment in when connected, it flashes into the little notificaton area.

That's the notification on zero conf

However, when I'm syncing, going through the blocks and seeing transactions in,it's in the list, but those notifications aren't there. Is that supposed to be the way?

Not sure what you are trying to say. Can you elaborate?
sr. member
Activity: 290
Merit: 262
Is maith liom bitcoin
I've been happily using armory now with the new version.

I did have a question though. When I get a payment in when connected, it flashes into the little notificaton area.

However, when I'm syncing, going through the blocks and seeing transactions in,it's in the list, but those notifications aren't there. Is that supposed to be the way?
legendary
Activity: 3738
Merit: 1360
Armory Developer
Chances are your copy of the blockchain is missing a bunch of blocks. You should do a factory reset.
legendary
Activity: 1762
Merit: 1011
So, I'm testing 0.92.99.6 with Bitcoin Core 0.10.

I removed the Armory database folder to let it create the new one. With about 5.52 GB of the blocks file built, it silently crashed. The second time, it got up to 5.64 GB and then crashed, with Windows notifying me this time. Could this have anything to do with Bitcoin Core txindex=1? Just a wild guess. No other special settings are set.

Here are the logs:

Code:
Log file opened at 1424136440: C:\Users\mmortal03\AppData\Roaming\Armory\armorycpplog.txt
-INFO  - 1424137219: (..\BlockUtils.cpp:778) blkfile dir: C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks
-INFO  - 1424137219: (..\BlockUtils.cpp:779) lmdb dir: C:\Users\mmortal03\AppData\Roaming\Armory\databases
-INFO  - 1424137219: (..\lmdb_wrapper.cpp:442) Opening databases...
-INFO  - 1424137219: (..\BlockUtils.cpp:1080) Executing: doInitialSyncOnLoad
-INFO  - 1424137219: (..\BlockUtils.cpp:1151) Total number of blk*.dat files: 194
-INFO  - 1424137219: (..\BlockUtils.cpp:1152) Total blockchain bytes: 31,085,749,345
-INFO  - 1424137219: (..\BlockUtils.cpp:1436) Reading headers from db
-WARN  - 1424137219: (..\lmdb_wrapper.cpp:1424) No headers in DB yet!
-INFO  - 1424137219: (..\BlockUtils.cpp:1462) Found 1 headers in db
-DEBUG - 1424137219: (..\Blockchain.cpp:208) Organizing chain w/ rebuild
-WARN  - 1424137219: (..\BlockUtils.cpp:1180) --- Fetching SSH summaries for 141 registered addresses
-INFO  - 1424137219: (..\BlockUtils.cpp:1193) Left off at file 0, offset 0
-INFO  - 1424137219: (..\BlockUtils.cpp:1196) Reading headers and building chain...
-INFO  - 1424137219: (..\BlockUtils.cpp:1197) Starting at block file 0 offset 0
-INFO  - 1424137219: (..\BlockUtils.cpp:1199) Block height 0
-DEBUG - 1424137585: (..\Blockchain.cpp:208) Organizing chain w/ rebuild
-INFO  - 1424137587: (..\BlockUtils.cpp:1234) Looking for first unrecognized block
-INFO  - 1424137620: (..\BlockUtils.cpp:1327) Loading block data... file 0 offset 0
-INFO  - 1424137713: (..\BlockUtils.cpp:481) Reading raw blocks finished at file 0 offset 2097361271
-INFO  - 1424137788: (..\BlockUtils.cpp:481) Reading raw blocks finished at file 1 offset 2097295438
-INFO  - 1424137826: (..\BlockUtils.cpp:481) Reading raw blocks finished at file 2 offset 1376883091


Log file opened at 1424138307: C:\Users\mmortal03\AppData\Roaming\Armory\armorycpplog.txt
-INFO  - 1424138719: (..\BlockUtils.cpp:778) blkfile dir: C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks
-INFO  - 1424138719: (..\BlockUtils.cpp:779) lmdb dir: C:\Users\mmortal03\AppData\Roaming\Armory\databases
-INFO  - 1424138719: (..\lmdb_wrapper.cpp:442) Opening databases...
-INFO  - 1424138719: (..\BlockUtils.cpp:1080) Executing: doInitialSyncOnLoad
-INFO  - 1424138719: (..\BlockUtils.cpp:1151) Total number of blk*.dat files: 194
-INFO  - 1424138719: (..\BlockUtils.cpp:1152) Total blockchain bytes: 31,085,749,345
-INFO  - 1424138719: (..\BlockUtils.cpp:1436) Reading headers from db
-INFO  - 1424138773: (..\BlockUtils.cpp:1462) Found 343829 headers in db
-DEBUG - 1424138773: (..\Blockchain.cpp:208) Organizing chain w/ rebuild
-WARN  - 1424138774: (..\BlockUtils.cpp:1180) --- Fetching SSH summaries for 141 registered addresses
-INFO  - 1424138778: (..\BlockUtils.cpp:1193) Left off at file 193, offset 46871271
-INFO  - 1424138778: (..\BlockUtils.cpp:1196) Reading headers and building chain...
-INFO  - 1424138778: (..\BlockUtils.cpp:1197) Starting at block file 193 offset 46871271
-INFO  - 1424138778: (..\BlockUtils.cpp:1199) Block height 343817
-DEBUG - 1424138778: (..\Blockchain.cpp:208) Organizing chain w/ rebuild
-INFO  - 1424139153: (..\BlockUtils.cpp:1234) Looking for first unrecognized block
-INFO  - 1424139153: (..\BlockUtils.cpp:1327) Loading block data... file 4 offset 0


Code:
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1074 - C++ block utilities loaded successfully
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1184 -
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1185 -
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1186 -
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1187 - ************************************************************
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1188 - Invoked: C:\Program Files (x86)\Armory\ArmoryQt.exe
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1189 - ************************************************************
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1190 - Loading Armory Engine:
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1191 -    Armory Version        : 0.92.99.6
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1192 -    Armory Build:         : 3b137cb902
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1193 -    PyBtcWallet  Version  : 1.35
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1194 - Detected Operating system: Windows
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1195 -    OS Variant            : 7-6.1.7601-SP1-Multiprocessor Free
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1196 -    User home-directory   : C:\Users\mmortal03\AppData\Roaming
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1197 -    Satoshi BTC directory : C:\Users\mmortal03\AppData\Roaming\Bitcoin\
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1198 -    Armory home dir       : C:\Users\mmortal03\AppData\Roaming\Armory\
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1199 - Detected System Specs    :
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1200 -    Total Available RAM   : 11.79 GB
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1201 -    CPU ID string         : Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1202 -    Number of CPU cores   : 8 cores
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1203 -    System is 64-bit      : True
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1204 -    Preferred Encoding    : cp1252
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1205 -    Machine Arch          : amd64
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1206 -    Available HDD (ARM)   : 359 GB
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1207 -    Available HDD (BTC)   : 359 GB
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1208 -
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1209 - Network Name: Main Network
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1210 - Satoshi Port: 8333
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1211 - Do wlt check: True
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1212 - Named options/arguments to armoryengine.py:
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     nettimeout      : 2
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     rescan          : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     ignoreAllZC     : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     enableSupernode : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     disableModules  : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     port            : None
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     interport       : 8223
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     skipStatsReport : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     forceWalletCheck: False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     rebuild         : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     datadir         : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     clearMempool    : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     offline         : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     coverageOutputDir: None
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     armoryDBDir     : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiPort     : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     useTorSettings  : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     netlog          : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     keypool         : 100
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     coverageInclude : None
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     forceOnline     : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     skipAnnounceCheck: False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     redownload      : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     multisigFile    : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     disableTorrent  : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     testAnnounceCode: False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     mtdebug         : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     logDisable      : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     settingsPath    : C:\Users\mmortal03\AppData\Roaming\Armory\ArmorySettings.txt
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     verbosity       : None
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     doDebug         : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     enableDetSign   : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     testnet         : False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     rpcport         : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiHome     : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiRpcport  : DEFAULT
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     logFile         : C:\Users\mmortal03\AppData\Roaming\Armory\ArmoryQt.exe.log.txt
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1214 -     disableConfPermis: False
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1215 - Other arguments:
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1218 - ************************************************************
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:1613 - C++ block utilities loaded successfully
2015-02-16 20:27 (INFO) -- BDM.pyc:408 - Using the asynchronous/multi-threaded BlockDataManager.
2015-02-16 20:27 (INFO) -- BDM.pyc:409 - Blockchain operations will happen in the background.  
2015-02-16 20:27 (INFO) -- BDM.pyc:410 - Devs: check TheBDM.getState() before asking for data.
2015-02-16 20:27 (INFO) -- BDM.pyc:411 - Registering addresses during rescans will queue them for
2015-02-16 20:27 (INFO) -- BDM.pyc:412 - inclusion after the current scan is completed.
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:3517 - Using settings file: C:\Users\mmortal03\AppData\Roaming\Armory\ArmorySettings.txt
2015-02-16 20:27 (INFO) -- announcefetch.pyc:95 - Reading files in fetcher directory:
2015-02-16 20:27 (INFO) -- announcefetch.pyc:104 -    announce         : 2d4505851a134f1c89046c6c0498bad2d0119c5466f4482503391ed852b40acc
2015-02-16 20:27 (INFO) -- announcefetch.pyc:104 -    bootstrap        : b62c08932668ce162d51226135940724e90f4c71704ac936f74cc153b34cc251
2015-02-16 20:27 (INFO) -- announcefetch.pyc:104 -    changelog        : 1f26fd9830edff027e4fa089dad316fc11e2a84c1d70f61ec8ec2bfbfefc1101
2015-02-16 20:27 (INFO) -- announcefetch.pyc:104 -    downloads        : ebbdc8ba41f313a18858ef1183d98975192978de0b25a6d403df9ec1a9f02454
2015-02-16 20:27 (INFO) -- announcefetch.pyc:104 -    notify           : 5a6f3e027fe8c7bc4f1582c32742c82a95f3a2952731f1e3f5fc9cda24967ff2
2015-02-16 20:27 (INFO) -- announcefetch.pyc:271 - Fetching: https://bitcoinarmory.com/announce.txt?osvar=7&os=win&ver=0.92.99.6&id=b6cfb540
2015-02-16 20:27 (INFO) -- ArmoryQt.py:210 - First load of new version: v0.92.99.6
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2723 - loadWalletsAndSettings
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2777 - Loading wallets...
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2836 - Number of wallets read in: 1
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2841 -    Wallet (removed):   "Primary Wallet (Watch)          "   (No Encryption)
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2850 - Loading Multisig Lockboxes
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2285 - Setting up networking...
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2314 - Internet status: 0
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2429 - startBitcoindIfNecessary
2015-02-16 20:27 (INFO) -- ArmoryQt.py:2478 - setSatoshiPaths
2015-02-16 20:27 (INFO) -- SDM.pyc:282 - Total size of files in C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks is 29.0 GB
2015-02-16 20:27 (INFO) -- SDM.pyc:415 - Found Bitcoin-Qt link on desktop: C:\Users\mmortal03\AppData\Roaming
2015-02-16 20:27 (INFO) -- SDM.pyc:321 - Found bitcoind in the following places:
2015-02-16 20:27 (INFO) -- SDM.pyc:323 -    C:\Program Files\Bitcoin\daemon\bitcoind.exe
2015-02-16 20:27 (INFO) -- SDM.pyc:325 - Using: C:\Program Files\Bitcoin\daemon\bitcoind.exe
2015-02-16 20:27 (INFO) -- SDM.pyc:496 - Reading bitcoin.conf file
2015-02-16 20:27 (INFO) -- SDM.pyc:515 - Setting permissions on bitcoin.conf
2015-02-16 20:27 (INFO) -- SDM.pyc:524 - Setting permissions on bitcoin.conf
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: [u'icacls', u'C:\\Users\\mmortal03\\AppData\\Roaming\\Bitcoin\\bitcoin.conf', u'/inheritance:r', u'/grant:r', u'mmortal03:F']
2015-02-16 20:27 (INFO) -- SDM.pyc:530 - icacls returned:
2015-02-16 20:27 (INFO) -- SDM.pyc:597 - Called startBitcoind
2015-02-16 20:27 (INFO) -- SDM.pyc:282 - Total size of files in C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks is 29.0 GB
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: ['C:\\Program Files\\Bitcoin\\daemon\\bitcoind.exe', u'-datadir=C:\\Users\\mmortal03\\AppData\\Roaming\\Bitcoin\\']
2015-02-16 20:27 (INFO) -- SDM.pyc:669 - PID of bitcoind: 15708
2015-02-16 20:27 (INFO) -- SDM.pyc:670 - PID of armory:   15824
2015-02-16 20:27 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: ['.\\guardian.exe', '15824', '15708']
2015-02-16 20:27 (INFO) -- SDM.pyc:834 - Creating proxy in SDM: host=127.0.0.1, port=8332
2015-02-16 20:27 (INFO) -- ArmoryQt.py:1514 - setupUriRegistration
2015-02-16 20:27 (INFO) -- ArmoryQt.py:1632 - URL-register action: AskUser
2015-02-16 20:27 (INFO) -- ArmoryQt.py:664 - Usermode: Expert
2015-02-16 20:27 (INFO) -- ArmoryQt.py:1809 - Changing usermode:
2015-02-16 20:27 (INFO) -- ArmoryQt.py:1810 -    From: Expert
2015-02-16 20:27 (INFO) -- ArmoryQt.py:1818 -      To: Expert
2015-02-16 20:27 (INFO) -- ArmoryQt.py:5882 - Dashboard switched to auto-InitSync
2015-02-16 20:27 (INFO) -- Networking.pyc:65 - Connection initiated.  Start handshake
2015-02-16 20:40 (INFO) -- Networking.pyc:156 - Received version message from peer:
2015-02-16 20:40 (INFO) -- Networking.pyc:157 -    Version:     70002
2015-02-16 20:40 (INFO) -- Networking.pyc:158 -    SubVersion:  /Satoshi:0.10.0/
2015-02-16 20:40 (INFO) -- Networking.pyc:159 -    TimeStamp:   1424137207
2015-02-16 20:40 (INFO) -- Networking.pyc:160 -    StartHeight: 343803
2015-02-16 20:40 (INFO) -- Networking.pyc:356 - Handshake finished, connection open!
2015-02-16 20:40 (INFO) -- ArmoryQt.py:2512 - loadBlockchainIfNecessary
2015-02-16 20:40 (INFO) -- ArmoryQt.py:2533 - Setting netmode: 1
2015-02-16 20:40 (INFO) -- ArmoryQt.py:6005 - Dashboard switched to "Scanning" mode
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1074 - C++ block utilities loaded successfully
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1184 -
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1185 -
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1186 -
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1187 - ************************************************************
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1188 - Invoked: C:\Program Files (x86)\Armory\ArmoryQt.exe
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1189 - ************************************************************
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1190 - Loading Armory Engine:
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1191 -    Armory Version        : 0.92.99.6
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1192 -    Armory Build:         : 3b137cb902
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1193 -    PyBtcWallet  Version  : 1.35
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1194 - Detected Operating system: Windows
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1195 -    OS Variant            : 7-6.1.7601-SP1-Multiprocessor Free
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1196 -    User home-directory   : C:\Users\mmortal03\AppData\Roaming
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1197 -    Satoshi BTC directory : C:\Users\mmortal03\AppData\Roaming\Bitcoin\
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1198 -    Armory home dir       : C:\Users\mmortal03\AppData\Roaming\Armory\
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1199 - Detected System Specs    :
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1200 -    Total Available RAM   : 11.79 GB
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1201 -    CPU ID string         : Intel64 Family 6 Model 58 Stepping 9, GenuineIntel
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1202 -    Number of CPU cores   : 8 cores
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1203 -    System is 64-bit      : True
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1204 -    Preferred Encoding    : cp1252
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1205 -    Machine Arch          : amd64
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1206 -    Available HDD (ARM)   : 353 GB
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1207 -    Available HDD (BTC)   : 353 GB
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1208 -
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1209 - Network Name: Main Network
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1210 - Satoshi Port: 8333
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1211 - Do wlt check: True
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1212 - Named options/arguments to armoryengine.py:
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     nettimeout      : 2
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     rescan          : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     ignoreAllZC     : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     enableSupernode : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     disableModules  : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     port            : None
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     interport       : 8223
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     skipStatsReport : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     forceWalletCheck: False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     rebuild         : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     datadir         : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     clearMempool    : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     offline         : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     coverageOutputDir: None
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     armoryDBDir     : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiPort     : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     useTorSettings  : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     netlog          : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     keypool         : 100
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     coverageInclude : None
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     forceOnline     : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     skipAnnounceCheck: False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     redownload      : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     multisigFile    : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     disableTorrent  : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     testAnnounceCode: False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     mtdebug         : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     logDisable      : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     settingsPath    : C:\Users\mmortal03\AppData\Roaming\Armory\ArmorySettings.txt
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     verbosity       : None
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     doDebug         : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     enableDetSign   : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     testnet         : False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     rpcport         : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiHome     : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     satoshiRpcport  : DEFAULT
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     logFile         : C:\Users\mmortal03\AppData\Roaming\Armory\ArmoryQt.exe.log.txt
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1214 -     disableConfPermis: False
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1215 - Other arguments:
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1218 - ************************************************************
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:1613 - C++ block utilities loaded successfully
2015-02-16 20:58 (INFO) -- BDM.pyc:408 - Using the asynchronous/multi-threaded BlockDataManager.
2015-02-16 20:58 (INFO) -- BDM.pyc:409 - Blockchain operations will happen in the background.  
2015-02-16 20:58 (INFO) -- BDM.pyc:410 - Devs: check TheBDM.getState() before asking for data.
2015-02-16 20:58 (INFO) -- BDM.pyc:411 - Registering addresses during rescans will queue them for
2015-02-16 20:58 (INFO) -- BDM.pyc:412 - inclusion after the current scan is completed.
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:3517 - Using settings file: C:\Users\mmortal03\AppData\Roaming\Armory\ArmorySettings.txt
2015-02-16 20:58 (INFO) -- announcefetch.pyc:95 - Reading files in fetcher directory:
2015-02-16 20:58 (INFO) -- announcefetch.pyc:104 -    announce         : 2d4505851a134f1c89046c6c0498bad2d0119c5466f4482503391ed852b40acc
2015-02-16 20:58 (INFO) -- announcefetch.pyc:104 -    bootstrap        : b62c08932668ce162d51226135940724e90f4c71704ac936f74cc153b34cc251
2015-02-16 20:58 (INFO) -- announcefetch.pyc:104 -    changelog        : 1f26fd9830edff027e4fa089dad316fc11e2a84c1d70f61ec8ec2bfbfefc1101
2015-02-16 20:58 (INFO) -- announcefetch.pyc:104 -    downloads        : ebbdc8ba41f313a18858ef1183d98975192978de0b25a6d403df9ec1a9f02454
2015-02-16 20:58 (INFO) -- announcefetch.pyc:104 -    notify           : 5a6f3e027fe8c7bc4f1582c32742c82a95f3a2952731f1e3f5fc9cda24967ff2
2015-02-16 20:58 (INFO) -- announcefetch.pyc:271 - Fetching: https://bitcoinarmory.com/announce.txt?osvar=7&os=win&ver=0.92.99.6&id=b6cfb540
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2723 - loadWalletsAndSettings
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2777 - Loading wallets...
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2836 - Number of wallets read in: 1
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2841 -    Wallet (removed):   "Primary Wallet (Watch)          "   (No Encryption)
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2850 - Loading Multisig Lockboxes
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2285 - Setting up networking...
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2314 - Internet status: 0
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2429 - startBitcoindIfNecessary
2015-02-16 20:58 (INFO) -- ArmoryQt.py:2478 - setSatoshiPaths
2015-02-16 20:58 (INFO) -- SDM.pyc:282 - Total size of files in C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks is 29.0 GB
2015-02-16 20:58 (INFO) -- SDM.pyc:415 - Found Bitcoin-Qt link on desktop: C:\Users\mmortal03\AppData\Roaming
2015-02-16 20:58 (INFO) -- SDM.pyc:321 - Found bitcoind in the following places:
2015-02-16 20:58 (INFO) -- SDM.pyc:323 -    C:\Program Files\Bitcoin\daemon\bitcoind.exe
2015-02-16 20:58 (INFO) -- SDM.pyc:325 - Using: C:\Program Files\Bitcoin\daemon\bitcoind.exe
2015-02-16 20:58 (INFO) -- SDM.pyc:496 - Reading bitcoin.conf file
2015-02-16 20:58 (INFO) -- SDM.pyc:515 - Setting permissions on bitcoin.conf
2015-02-16 20:58 (INFO) -- SDM.pyc:524 - Setting permissions on bitcoin.conf
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: [u'icacls', u'C:\\Users\\mmortal03\\AppData\\Roaming\\Bitcoin\\bitcoin.conf', u'/inheritance:r', u'/grant:r', u'mmortal03:F']
2015-02-16 20:58 (INFO) -- SDM.pyc:530 - icacls returned:
2015-02-16 20:58 (INFO) -- SDM.pyc:597 - Called startBitcoind
2015-02-16 20:58 (INFO) -- SDM.pyc:282 - Total size of files in C:\Users\mmortal03\AppData\Roaming\Bitcoin\blocks is 29.0 GB
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: ['C:\\Program Files\\Bitcoin\\daemon\\bitcoind.exe', u'-datadir=C:\\Users\\mmortal03\\AppData\\Roaming\\Bitcoin\\']
2015-02-16 20:58 (INFO) -- SDM.pyc:669 - PID of bitcoind: 11684
2015-02-16 20:58 (INFO) -- SDM.pyc:670 - PID of armory:   15524
2015-02-16 20:58 (INFO) -- ArmoryUtils.pyc:598 - Executing popen: ['.\\guardian.exe', '15524', '11684']
2015-02-16 20:58 (INFO) -- SDM.pyc:834 - Creating proxy in SDM: host=127.0.0.1, port=8332
2015-02-16 20:58 (INFO) -- ArmoryQt.py:1514 - setupUriRegistration
2015-02-16 20:58 (INFO) -- ArmoryQt.py:1632 - URL-register action: AskUser
2015-02-16 20:58 (INFO) -- ArmoryQt.py:664 - Usermode: Expert
2015-02-16 20:58 (INFO) -- ArmoryQt.py:1809 - Changing usermode:
2015-02-16 20:58 (INFO) -- ArmoryQt.py:1810 -    From: Expert
2015-02-16 20:58 (INFO) -- ArmoryQt.py:1818 -      To: Expert
2015-02-16 20:58 (INFO) -- ArmoryQt.py:5882 - Dashboard switched to auto-InitSync
2015-02-16 20:58 (INFO) -- Networking.pyc:65 - Connection initiated.  Start handshake
2015-02-16 21:01 (INFO) -- announcefetch.pyc:389 - Forcing announce data fetch
2015-02-16 21:01 (INFO) -- announcefetch.pyc:271 - Fetching: https://bitcoinarmory.com/announce.txt
2015-02-16 21:05 (INFO) -- Networking.pyc:156 - Received version message from peer:
2015-02-16 21:05 (INFO) -- Networking.pyc:157 -    Version:     70002
2015-02-16 21:05 (INFO) -- Networking.pyc:158 -    SubVersion:  /Satoshi:0.10.0/
2015-02-16 21:05 (INFO) -- Networking.pyc:159 -    TimeStamp:   1424138706
2015-02-16 21:05 (INFO) -- Networking.pyc:160 -    StartHeight: 343804
2015-02-16 21:05 (INFO) -- Networking.pyc:356 - Handshake finished, connection open!
2015-02-16 21:05 (INFO) -- ArmoryQt.py:2512 - loadBlockchainIfNecessary
2015-02-16 21:05 (INFO) -- ArmoryQt.py:2533 - Setting netmode: 1
2015-02-16 21:05 (INFO) -- ArmoryQt.py:6005 - Dashboard switched to "Scanning" mode
2015-02-16 21:05 (INFO) -- Networking.pyc:215 - Received new block.  000000000000000013987d0f7be153eb2505018409255b3d3db37c49a589198e

I've since tried it a third time, and it will do the same as the second time, generate a little more of the database, then crashing.
legendary
Activity: 3738
Merit: 1360
Armory Developer
I get the same error when trying to use coin control.

That's fixed in 0.93-bugfix
full member
Activity: 120
Merit: 100
Java Coder
I get the same error when trying to use coin control.
legendary
Activity: 3738
Merit: 1360
Armory Developer
Has anyone looked at my post about armoryd: https://bitcointalksearch.org/topic/m.10204608 ?

Should I not get my hopes up for armoryd? Or should I maybe pay to have these issues addressed?

This entry is marked as fixed in our bug list.
Pages:
Jump to: