Bitcoin Forum
May 02, 2024, 12:22:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
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 »
  Print  
Author Topic: Armory 0.93 testing release! (with 0.05 BTC bug bounty)  (Read 35659 times)
Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3071



View Profile
February 11, 2015, 08:24:53 PM
 #341

  • Db not being able to find detailed tx information when double-clicking/right/click selecting from the main tx window (warning appears stating "Armory cannot find this tx in the database. This shouldn't happen!")
  • Tx display/column sorting is broken in Address view

I can confirm the first issue is fixed in current 0.93 testing branch for me. 2nd issue remains though.

Vires in numeris
1714609344
Hero Member
*
Offline Offline

Posts: 1714609344

View Profile Personal Message (Offline)

Ignore
1714609344
Reply with quote  #2

1714609344
Report to moderator
1714609344
Hero Member
*
Offline Offline

Posts: 1714609344

View Profile Personal Message (Offline)

Ignore
1714609344
Reply with quote  #2

1714609344
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 11, 2015, 08:50:32 PM
 #342

I can confirm the first issue is fixed in current 0.93 testing branch for me. 2nd issue remains though.

This isn't broken per say, it's disabled. The previous version of Armory kept all history in RAM both on the C++ and Python side. This allowed for ledger sorting on the Python side, but was slow and mainly, it scaled poorly.

To implement proper scalability, there is no more history saved on the Python side. The only thing kept in RAM is the few ledger entries currently displayed in the ledger. The C++ side only keeps a snapshot of transaction count per block range, and builds pages of transaction ledgers on demand.

To offer other type of filters (such as ordering by transaction amount or address comment) will require constructing dedicated history summaries for each filter type. It is doable but requires a lot of extra work to put it in place. Indeed, the filter by block height is very fast to compute, as transaction history is keyed by block height in the DB. As such, the summary for each address and wallet is computed in the main backend thread, after the DB has been initialized.

More sophisticated filters such as ordering by value can't be preprocessed as easily. You would need to compute the full address and wallet ledgers to know the exact transaction value for each. Not only does it require extra code to achieve this, the operation is also too slow to let it run in the main backend thread. It would dramatically slow startup speed otherwise. As a result they would have to be computed in parallel, and some UI needs to be added to inform the user of the filter availability, kind of like the consistency check.

That's too much effort for the benefit considering our current priority queue, so you shouldn't expect to see this feature back in the near future.

Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3071



View Profile
February 11, 2015, 09:07:39 PM
Last edit: February 11, 2015, 10:17:13 PM by Carlton Banks
 #343

Agreed, it's hardly priority if alot of extra Db coding is needed. I'm contemplating whether such code could be re-used to offer an extended public key view with sorting re-enabled in future, so it can at least be left until after the new wallet format happens.

Vires in numeris
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 12, 2015, 04:58:07 AM
 #344

Agreed, it's hardly priority if alot of extra Db coding is needed. I'm contemplating whether such code could be re-used to offer an extended public key view with sorting re-enabled in future, so it can at least be left until after the new wallet format happens.

The threading, signaling and UI interfacing can be leveraged, but I suspect each filter needs to be developed individually.

Carlton Banks
Legendary
*
Offline Offline

Activity: 3430
Merit: 3071



View Profile
February 12, 2015, 05:02:48 PM
 #345

Coin control seems to be broken in 0.93bugfix atm. I get:

"There was an error constructing your transaction due to a quirk in the way bitcoin transactions work. If you see this error more than once try sending your BTC in two or more separate transactions."

Vires in numeris
Jouke
Sr. Member
****
Offline Offline

Activity: 426
Merit: 250



View Profile WWW
February 13, 2015, 08:22:49 AM
 #346

Has anyone looked at my post about armoryd: https://bitcointalk.org/index.php?topic=919202.msg10204608#msg10204608 ?

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

Koop en verkoop snel en veilig bitcoins via iDeal op Bitonic.nl
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 13, 2015, 03:02:25 PM
 #347

Has anyone looked at my post about armoryd: https://bitcointalk.org/index.php?topic=919202.msg10204608#msg10204608 ?

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.

zombieslayer9099
Full Member
***
Offline Offline

Activity: 120
Merit: 100

Java Coder


View Profile
February 14, 2015, 03:57:20 PM
 #348

I get the same error when trying to use coin control.

Did you know there are 1,461,501,637,330,902,918,203,684,832,716,283,019,655,932,542,976 possible bitcoin addresses? To put that into perspective, that's greater than the width of the universe in zeptometers (10^-21 meter).
  ▁ ▂ ▄ ▅ ▆ Cloudmining 101: how to avoid scams  ▆ ▅ ▄ ▂ ▁
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 14, 2015, 05:23:43 PM
 #349

I get the same error when trying to use coin control.

That's fixed in 0.93-bugfix

mmortal03
Legendary
*
Offline Offline

Activity: 1762
Merit: 1010


View Profile
February 17, 2015, 02:29:50 AM
 #350

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.
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 17, 2015, 04:24:27 AM
 #351

Chances are your copy of the blockchain is missing a bunch of blocks. You should do a factory reset.

jammers
Sr. Member
****
Offline Offline

Activity: 290
Merit: 262

Is maith liom bitcoin


View Profile WWW
February 17, 2015, 11:28:10 AM
 #352

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?

██████
███▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄
██████
BITCOIN MARKETING TEAM
Established Block 318006 in 2014
██████
▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄███
██████
██████
███▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄
██████
             ▄▄▀▀▀▄ ▄▄▄ ▄▄▄
 ▄▀▀▀▄▄▄▄▄▄▀▀ ▄▄▀   ███ ███
█           ▄███ █████████████▄▄
 ▀▄  ▄▄▄▄███████ ▀▀████▀▀▀▀██████
   █ ███▀▀███████  ████     █████
   █ ██    █   ▀▀  █████████████
   █  ██▄▄     ▄   ██████████████▄
    █  ██   █ ██   ████     ▀█████
     █  ▀█████▄█   ████     ▄█████
      ▀▄  ▀████ ████████████████▀
       ▀▄    ▀▀   █ ███ ███
         ▀▄       █ ▀▀▀ ▀▀▀
           ▀▀▀▀▀▄▄▀
.
itcoins in Ireland
||||
██████
▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄███
██████
goatpig
Moderator
Legendary
*
Offline Offline

Activity: 3668
Merit: 1345

Armory Developer


View Profile
February 17, 2015, 02:58:37 PM
 #353

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?

aerobatic
Hero Member
*****
Offline Offline

Activity: 702
Merit: 500


View Profile
February 17, 2015, 04:43:02 PM
 #354

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
jammers
Sr. Member
****
Offline Offline

Activity: 290
Merit: 262

Is maith liom bitcoin


View Profile WWW
February 17, 2015, 06:27:54 PM
 #355

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.

██████
███▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄
██████
BITCOIN MARKETING TEAM
Established Block 318006 in 2014
██████
▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄███
██████
██████
███▀▀▀
███
███
███
███
███
███
███
███
███
███▄▄▄
██████
             ▄▄▀▀▀▄ ▄▄▄ ▄▄▄
 ▄▀▀▀▄▄▄▄▄▄▀▀ ▄▄▀   ███ ███
█           ▄███ █████████████▄▄
 ▀▄  ▄▄▄▄███████ ▀▀████▀▀▀▀██████
   █ ███▀▀███████  ████     █████
   █ ██    █   ▀▀  █████████████
   █  ██▄▄     ▄   ██████████████▄
    █  ██   █ ██   ████     ▀█████
     █  ▀█████▄█   ████     ▄█████
      ▀▄  ▀████ ████████████████▀
       ▀▄    ▀▀   █ ███ ███
         ▀▄       █ ▀▀▀ ▀▀▀
           ▀▀▀▀▀▄▄▀
.
itcoins in Ireland
||||
██████
▀▀▀███
███
███
███
███
███
███
███
███
███
▄▄▄███
██████
etotheipi (OP)
Legendary
*
Offline Offline

Activity: 1428
Merit: 1093


Core Armory Developer


View Profile WWW
February 18, 2015, 03:24:26 AM
 #356

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.

  Armory 0.92.99.7-testing for Windows XP, Vista, 7, 8+ (32- and 64-bit)
  Armory 0.92.99.7-testing for MacOSX 10.7+ (64bit)
  Armory 0.92.99.7-testing for Ubuntu 12.04+ (32bit)
  Armory 0.92.99.7-testing for Ubuntu 12.04+ (64bit)
  Armory 0.92.99.7-testing for RaspberryPi  (armhf)

  Armory 0.92.99.7-testing Offline Bundle for Ubuntu 12.04 exact (32bit)
  Armory 0.92.99.7-testing Offline Bundle for Ubuntu 12.04 exact (64bit)
  Armory 0.92.99.7-testing Offline Bundle for RaspberryPi  (armhf)

  Armory 0.92.99.7-testing: Signed hashes of all installers

Founder and CEO of Armory Technologies, Inc.
Armory Bitcoin Wallet: Bringing cold storage to the average user!
Only use Armory software signed by the Armory Offline Signing Key (0x98832223)

Please donate to the Armory project by clicking here!    (or donate directly via 1QBDLYTDFHHZAABYSKGKPWKLSXZWCCJQBX -- yes, it's a real address!)
mmortal03
Legendary
*
Offline Offline

Activity: 1762
Merit: 1010


View Profile
February 18, 2015, 04:36:24 AM
 #357

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?
japerry
Sr. Member
****
Offline Offline

Activity: 306
Merit: 250



View Profile WWW
February 18, 2015, 12:09:38 PM
 #358

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?


etotheipi (OP)
Legendary
*
Offline Offline

Activity: 1428
Merit: 1093


Core Armory Developer


View Profile WWW
February 18, 2015, 12:46:10 PM
 #359

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)



Founder and CEO of Armory Technologies, Inc.
Armory Bitcoin Wallet: Bringing cold storage to the average user!
Only use Armory software signed by the Armory Offline Signing Key (0x98832223)

Please donate to the Armory project by clicking here!    (or donate directly via 1QBDLYTDFHHZAABYSKGKPWKLSXZWCCJQBX -- yes, it's a real address!)
japerry
Sr. Member
****
Offline Offline

Activity: 306
Merit: 250



View Profile WWW
February 18, 2015, 12:54:24 PM
 #360

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.


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 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!