Pages:
Author

Topic: Armory 0.93.3 with BIP62 compliance - page 2. (Read 8910 times)

staff
Activity: 3374
Merit: 6530
Just writing some code
December 07, 2015, 08:46:46 AM
#71
For some reason, I cant download the 0.93 version last night, but instead I downloaded 0.92 version, would there be a problem with that in the future?
Yes. It would produce high s signatures which would be rejected by the network.
legendary
Activity: 1708
Merit: 1003
December 07, 2015, 05:52:37 AM
#70
For some reason, I cant download the 0.93 version last night, but instead I downloaded 0.92 version, would there be a problem with that in the future?
legendary
Activity: 3640
Merit: 1345
Armory Developer
December 04, 2015, 11:06:35 AM
#69
More out of curiosity than anything else, but is the secure downloader actually working at the moment?  For me, it complains that it hasn't seen an update in months, and won't show me anything recent.  But I self-built, so maybe something broke.

I don't think it is.

Quote
Sometimes when I make a tx and get change back in the same wallet the change appears as separate tx between the transactions. Not a real problem ofcourse, however the change is also not subtracted from the address so it shows as double. This prevents to make further transactions until the tx are confirmed. In those cases the change address is the same as the output address.

Armory won't let you spend incoming ZC, only ZC change. I'm aware of the ZC parsing bug (where it sometimes fail to figure out an output is actually change) and I have fixed that in the soon to come release, so you'll have to be patient.
sr. member
Activity: 449
Merit: 251
December 04, 2015, 06:08:20 AM
#68
Well I have an issue with the new armory.

Sometimes when I make a tx and get change back in the same wallet the change appears as separate tx between the transactions. Not a real problem ofcourse, however the change is also not subtracted from the address so it shows as double. This prevents to make further transactions until the tx are confirmed. In those cases the change address is the same as the output address.

Probably an example makes it clearer:

Wallet A has 0.10 BTC which is bought of 1 transaction

A transaction is made of 0.02

Now the wallet shows two transactions:

tx1 -0.02 BTC
tx2 +0.0799 BTC

total value 0.16998

It shows like that until all tx have confirmed and before confirmation when you try to make a transaction (of the 0.0799 that should be able to spend) it can't broadcast the transaction. When the tx get confirmed the tx (tx2 +0.0799 BTC) disappears from the list.

It does not happen with all the tx just some.
hero member
Activity: 563
Merit: 500
December 03, 2015, 05:54:22 PM
#67
Armory 0.93.3 with BIP62 Released

Download links below, but as always, please use the secure downloader within Armory under "Help"-->"Update Software" or on the Announcements tab on the main screen.

More out of curiosity than anything else, but is the secure downloader actually working at the moment?  For me, it complains that it hasn't seen an update in months, and won't show me anything recent.  But I self-built, so maybe something broke.
legendary
Activity: 3640
Merit: 1345
Armory Developer
November 30, 2015, 05:12:02 PM
#66
Is 0.93.3 going to be put up on the website?  Currently the downloads link still seems to point to 0.93.2.

roy

Not sure about that, I'll ask around.
hero member
Activity: 563
Merit: 500
November 30, 2015, 04:08:10 PM
#65
Is 0.93.3 going to be put up on the website?  Currently the downloads link still seems to point to 0.93.2.

roy
legendary
Activity: 3640
Merit: 1345
Armory Developer
November 22, 2015, 09:12:57 AM
#64
Is this the fix for the URI bug?

No

Quote
In jsonrpc_listaddrunspent() the identical code is used at line 556.
Should that line be patched in the same way as line 462 ?

No
newbie
Activity: 10
Merit: 0
November 22, 2015, 12:44:24 AM
#63
Critical Bug Fix: "bitcoin:" URI handling of Multisig/P2SH addresses:
The code that handles clicking on a "bitcoin:" link outside Armory was improperly handling Multisig/P2SH addresses, and would prefill a valid but incorrect address.

I diff'd the 93.2 v.s. 93.3 source code to find the bug fix for the URI issue.
I can't see any change that is obviously related to it.

There is a change in jsonrpc_listunspent() at armoryd.py:462 where ".getOutPoint()" has been removed.
462c461
<             curUTXODict['txid'] = binary_to_hex(u.getOutPoint().getTxHash(), \
---
>             curUTXODict['txid'] = binary_to_hex(u.getTxHash(), \

Is this the fix for the URI bug?

In jsonrpc_listaddrunspent() the identical code is used at line 556.
Should that line be patched in the same way as line 462 ?

legendary
Activity: 3640
Merit: 1345
Armory Developer
November 15, 2015, 08:49:39 AM
#62
So that's fixed for me but wonder why it would work in linux and not in windows?

Every issues I have seen on Win10 had something to do with permissions. I guess they tightened the user isolation. I should upgrade to 10 at some point...

Quote
How do I get armory to generate that secure bitcoin.conf like it did originally?

That's a feature for auto bitcoind only. Armory only uses the RPC to recover status data from bitcoind when it manages it. It won't bother if you manage Qt yourself.
member
Activity: 91
Merit: 10
November 15, 2015, 08:34:12 AM
#61
It won't load with the armory generated bitcoin.conf only with the p2pool config that I have.

I had in the armory generated config
rpcuser=generated_by_armory
rpcpassword=long password

but it won't load with that
but it will load with this...

listen=1
gen=0
server=1
daemon=1
rpcport=8332
rpcconnect=127.0.0.1
rpcallowip=192.168.1.12
rpcuser=bitcoinrpc
rpcpassword=AJacKm5v8MHFBU1vvHjznhAiy3MckM8jPMDiX3grbpc5
maxconnections=30
upnp=0
mintxfee=0.00005
minrelaytxfee=0.00005
disablewallet=1

Something has changed somewhere.

How do I get armory to generate that secure bitcoin.conf like it did originally?
member
Activity: 91
Merit: 10
November 15, 2015, 08:15:21 AM
#60
Ah ha! I found it looking in the bitcoin log there's an issue with it accepting connection here's the error that led me to check out the bitcoin.conf
"ERROR: CScriptCheck(): ca0ee950fb4c1092d5b8e91b236db50b541a1eb13f8de26f7334cb7f259b6f6d:0 VerifySignature failed: Non-canonical signature: S value is unnecessarily high"

I switched the bitcoin.conf off and it didn't work so I turned my old p2pool conf on and it connected.

So that's fixed for me but wonder why it would work in linux and not in windows?

Also I'm a billionaire according to my wallet I have 184467440736.77636719 BTC more than there is in existance... When I do a repair wallet it goes away.

Thanks for your help your last comment is what got me thinking about antivirus, firewall then bitcoin log was the hint I needed.


legendary
Activity: 3640
Merit: 1345
Armory Developer
November 15, 2015, 07:12:56 AM
#59
I don't have much to go on here. It definitely fails to either connect or recognize the blockchain data path. You should turn off auto bitcoind, start BitcoinQt manually and look at the peers, see if Armory managed to connect at some point (or check Core's debug.log)

If there is no trace of Armory connecting as a peer in Core's log, it ought to be a Windows firewall/Bit Defender/anti virus rule. If it does connect, then it's a pathing and/or permission issue on the blockchain data folder.
member
Activity: 91
Merit: 10
November 14, 2015, 03:29:42 PM
#58
One other thing I noticed is that while in this offline state if I click on wallet properties I hear a system ding and then the interface is locked and just ding ding everywhere I click on the armory interface till I end task.
member
Activity: 91
Merit: 10
November 14, 2015, 03:26:47 PM
#57
Let's see armorycpplog.txt

It only says...

Log file opened at 1447528977: D:\armoryW\armorycpplog.txt

And ArmorySetting.txt is this...

ManageSatoshi                        | False
NotifyMinPriority                    | 2048
MainWalletCols                       | ff0500003c0078005000a502
Wallet_removed for privacy_DNAA_RecvOther      | False
NotifyBlkFinish                      | False
MainGeometry                         | 01d9d0cb000100000000014c000001030000063e000003ee000001540000012200000636000003e 6000000000000
SkipStatsReport                      | False
SendBtcGeometry                      | 01d9d0cb0001000000000204000000f9000005690000032e0000020e0000011b0000055f0000032 4000000000000
LastBlkRecvTime                      | 1447513708.15
LastDirectory                        | D:\armoryW
Agreed_to_EULA                       | True
MonthlyID                            | 1115_9b0e52bc
NotifyBtcIn                          | True
SyncSuccessCount                     | 10
MainLedgerCols                       | ff0d14000000ad004800700096007000000000000000000000000000
DonateAlready                        | False
UseTorSettings                       | False
DNAA_UnlockTimeout                   | False
WltPropAddrCols                      | ff052200bd00d8004000ae00
AlwaysArmoryURI                      | 0
PrefEndian                           | >
NotifyDiscon                         | True
SkipAnnounceCheck                    | False
KeybdOSD                             | False
NotifyIgnore                         |
DNAA_IntroDialog                     | True
SatoshiDatadir                       | F:\Bitcoin
DateFormat                           | 25592d25622d25642025493a254d2570
DNAA_AllBackupWarn                   | False
DonateFreq                           | 20
DisableUpgradeNotify                 | False
ScrambleDefault                      | 0
AdvFeature_UseCt                     | 0
UnlockTimeout                        | 10
Default_Fee                          | 10000
LastFilterState                      | 0
MinimizeOrClose                      | Close
SkipVersionCheck                     | False
User_Mode                            | Expert
Load_Count                           | 52
First_Load_Date                      | 1446854151
Wallet_removed for privacy_DNAA_RemindBackup   | True
NotifyBtcOut                         | True
DNAA_DeleteLevelDB                   | False
SkipOnlineCheck                      | False
MinimizeOnOpen                       | False
FailedLoadCount                      | 0
First_Load                           | False
Wallet_removed for privacy_ChangeBehavior      | NewAddr
Wallet_removed for privacy_LedgerShow          | True
IgnoreAlerts                         |
DisableTorrent                       | True
LastBlkRecv                          | 383544
DonateLastPester                     | 0
DonateDNAA                           | False
NotifyReconn                         | True
SatoshiExe                           | C:\Program Files\Bitcoin
DNAA_DefaultApp                      | True
WltPropGeometry                      | 01d9d0cb00010000000001a700000086000005830000039b000001b1000000a8000005790000039 1000000000000
LastVersionLoad                      | v0.93.3
legendary
Activity: 3640
Merit: 1345
Armory Developer
November 14, 2015, 03:21:37 PM
#56
Let's see armorycpplog.txt
member
Activity: 91
Merit: 10
November 14, 2015, 02:53:38 PM
#55
I would need more than just the last line. Either give me more here or post your log file in a support ticket.

2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1076 - C++ block utilities loaded successfully
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1186 -
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1187 -
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1188 -
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1189 - ************************************************************
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1190 - Invoked: C:\Program Files\Armory\ArmoryQt.exe --satoshi-datadir=F:\Bitcoin --datadir=D:\armoryW
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1191 - ************************************************************
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1192 - Loading Armory Engine:
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1193 -    Armory Version        : 0.93.3
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1194 -    Armory Build:         : e59e10d38c
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1195 -    PyBtcWallet  Version  : 1.35
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1196 - Detected Operating system: Windows
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1197 -    OS Variant            : 8-6.2.9200--Multiprocessor Free
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1198 -    User home-directory   : C:\Users\twebit\AppData\Roaming
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1199 -    Satoshi BTC directory : F:\Bitcoin
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1200 -    Armory home dir       : D:\armoryW
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1201 - Detected System Specs    :
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1202 -    Total Available RAM   : 15.98 GB
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1203 -    CPU ID string         : Intel64 Family 6 Model 42 Stepping 7, GenuineIntel
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1204 -    Number of CPU cores   : 8 cores
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1205 -    System is 64-bit      : True
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1206 -    Preferred Encoding    : cp1252
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1207 -    Machine Arch          : amd64
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1208 -    Available HDD (ARM)   : 151 GB
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1209 -    Available HDD (BTC)   : 242 GB
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1210 -
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1211 - Network Name: Main Network
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1212 - Satoshi Port: 8333
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1213 - Do wlt check: True
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1214 - Named options/arguments to armoryengine.py:
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     nettimeout      : 2
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     rescan          : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     ignoreAllZC     : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     enableSupernode : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     disableModules  : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     port            : None
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     interport       : 8223
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     skipStatsReport : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     forceWalletCheck: False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     rebuild         : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     datadir         : D:\armoryW
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     clearMempool    : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     offline         : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     coverageOutputDir: None
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     armoryDBDir     : DEFAULT
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     satoshiPort     : DEFAULT
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     useTorSettings  : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     netlog          : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     keypool         : 100
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     coverageInclude : None
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     forceOnline     : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     skipAnnounceCheck: False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     redownload      : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     multisigFile    : DEFAULT
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     disableTorrent  : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     testAnnounceCode: False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     mtdebug         : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     logDisable      : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     settingsPath    : D:\armoryW\ArmorySettings.txt
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     verbosity       : None
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     doDebug         : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     enableDetSign   : True
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     testnet         : False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     rpcport         : DEFAULT
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     satoshiHome     : F:\Bitcoin
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     satoshiRpcport  : DEFAULT
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     logFile         : D:\armoryW\ArmoryQt.exe.log.txt
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1216 -     disableConfPermis: False
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1217 - Other arguments:
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1220 - ************************************************************
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:1620 - C++ block utilities loaded successfully
2015-11-14 13:50 (INFO) -- BDM.pyc:418 - Using the asynchronous/multi-threaded BlockDataManager.
2015-11-14 13:50 (INFO) -- BDM.pyc:419 - Blockchain operations will happen in the background. 
2015-11-14 13:50 (INFO) -- BDM.pyc:420 - Devs: check TheBDM.getState() before asking for data.
2015-11-14 13:50 (INFO) -- BDM.pyc:421 - Registering addresses during rescans will queue them for
2015-11-14 13:50 (INFO) -- BDM.pyc:422 - inclusion after the current scan is completed.
2015-11-14 13:50 (INFO) -- ArmoryUtils.pyc:3531 - Using settings file: D:\armoryW\ArmorySettings.txt
2015-11-14 13:50 (INFO) -- announcefetch.pyc:95 - Reading files in fetcher directory:
2015-11-14 13:50 (INFO) -- announcefetch.pyc:104 -    announce         : 96f5d5f4253bac5528333c4fef3afd5fa0e931816bfd4c4c8b43d85cee002bb9
2015-11-14 13:50 (INFO) -- announcefetch.pyc:104 -    bootstrap        : b62c08932668ce162d51226135940724e90f4c71704ac936f74cc153b34cc251
2015-11-14 13:50 (INFO) -- announcefetch.pyc:104 -    changelog        : 1c01304b876de3e75672c8b13d9a00157556b86612afac1c88ffc40a8d7dfb90
2015-11-14 13:50 (INFO) -- announcefetch.pyc:104 -    downloads        : 28efee8047ee0a2c26ac9f785d93566fb5a45c20a794da6f972aa48db50ec35a
2015-11-14 13:50 (INFO) -- announcefetch.pyc:104 -    notify           : 87fa1adcd555be83a71b4f5935a6d4f85178ccbf5043531fdd71432b57d127ca
2015-11-14 13:50 (INFO) -- announcefetch.pyc:271 - Fetching: https://bitcoinarmory.com/announce.txt?osvar=8&os=win&ver=0.93.3&id=9b0e52bc
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2736 - loadWalletsAndSettings
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2790 - Loading wallets...
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2849 - Number of wallets read in: 1
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2854 -    Wallet removed for privacy                      "   (Encrypted)
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2863 - Loading Multisig Lockboxes
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2298 - Setting up networking...
2015-11-14 13:50 (ERROR) -- announcefetch.pyc:283 - Specified URL was inaccessible
2015-11-14 13:50 (ERROR) -- announcefetch.pyc:284 - Tried: https://bitcoinarmory.com/announce.txt?osvar=8&os=win&ver=0.93.3&id=9b0e52bc
2015-11-14 13:50 (INFO) -- announcefetch.pyc:271 - Fetching: https://s3.amazonaws.com/bitcoinarmory-media/announce.txt
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2327 - Internet status: 0
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2525 - loadBlockchainIfNecessary
2015-11-14 13:50 (INFO) -- ArmoryQt.py:2546 - Setting netmode: 0
2015-11-14 13:50 (INFO) -- ArmoryQt.py:1514 - setupUriRegistration
2015-11-14 13:50 (INFO) -- ArmoryQt.py:1632 - URL-register action: AskUser
2015-11-14 13:50 (INFO) -- ArmoryQt.py:664 - Usermode: Expert
2015-11-14 13:50 (INFO) -- ArmoryQt.py:1810 - Changing usermode:
2015-11-14 13:50 (INFO) -- ArmoryQt.py:1811 -    From: Expert
2015-11-14 13:50 (INFO) -- ArmoryQt.py:1819 -      To: Expert
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:50 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss
2015-11-14 13:51 (INFO) -- ArmoryQt.py:6763 - BDM is safe for clean shutdown
2015-11-14 13:51 (INFO) -- ArmoryQt.py:6805 - Attempting to close the main window!
legendary
Activity: 3640
Merit: 1345
Armory Developer
November 14, 2015, 02:50:39 PM
#54
I would need more than just the last line. Either give me more here or post your log file in a support ticket.
member
Activity: 91
Merit: 10
November 14, 2015, 02:47:37 PM
#53
Look at the end of armorylog.txt, should have some clue.

Looked and it says "2015-11-14 13:41 (INFO) -- ArmoryQt.py:5962 - Dashboard switched to user-OfflineOnlinePoss"

I've also tried copying all data to my OS's default data directories and checking let armory start bitcoind/qt but it doesn't start bitcoind/qt
Everything works when loading linux mint from live cd with the same parameters so I'm assuming something to do with win10.

Any other tips?
Thanks

legendary
Activity: 3640
Merit: 1345
Armory Developer
November 14, 2015, 02:29:11 PM
#52
Look at the end of armorylog.txt, should have some clue.
Pages:
Jump to: