Pages:
Author

Topic: Armory 0.95 testing phase - page 2. (Read 8294 times)

legendary
Activity: 3640
Merit: 1345
Armory Developer
September 28, 2016, 03:11:21 AM
Here's a something from ArmoryLog.txt referring to a registerWallet function:

Code:
016-09-27 23:25 (INFO) -- ArmoryQt.py:2307 - Setting netmode: 1
2016-09-27 23:25 (ERROR) -- Traceback (most recent call last):
  File "./ArmoryQt.py", line 6637, in method_signal
    method()
  File "./ArmoryQt.py", line 6689, in completeBlockchainProcessingInitialization
    self.setupBDV()
  File "./ArmoryQt.py", line 6655, in setupBDV
    self.walletMap[wltId].registerWallet()
  File "/home/user/BitcoinArmory/armoryengine/PyBtcWallet.py", line 284, in registerWallet
    self.cppWallet = TheBDM.registerWallet(prefixedKeys, self.uniqueIDB58, isNew)
  File "/home/user/BitcoinArmory/armoryengine/BDM.py", line 116, in inner
    return func(*newArgs, **kwargs)
  File "/home/user/BitcoinArmory/armoryengine/BDM.py", line 246, in registerWallet
    return self.bdv().registerWallet(uniqueIDB58, prefixedKeys, isNew)
  File "/home/user/BitcoinArmory/CppBlockUtils.py", line 1417, in registerWallet
    def registerWallet(self, *args): return _CppBlockUtils.BlockDataViewer_registerWallet(self, *args)
RuntimeError: data is too large for fcgi packet

apparently the one wallet is so large it created a serialized packet over the per packet 64kB limit. Will fix it at some point.
legendary
Activity: 3430
Merit: 3074
September 27, 2016, 06:51:03 PM
Here's a something from ArmoryLog.txt referring to a registerWallet function:

Code:
016-09-27 23:25 (INFO) -- ArmoryQt.py:2307 - Setting netmode: 1
2016-09-27 23:25 (ERROR) -- Traceback (most recent call last):
  File "./ArmoryQt.py", line 6637, in method_signal
    method()
  File "./ArmoryQt.py", line 6689, in completeBlockchainProcessingInitialization
    self.setupBDV()
  File "./ArmoryQt.py", line 6655, in setupBDV
    self.walletMap[wltId].registerWallet()
  File "/home/user/BitcoinArmory/armoryengine/PyBtcWallet.py", line 284, in registerWallet
    self.cppWallet = TheBDM.registerWallet(prefixedKeys, self.uniqueIDB58, isNew)
  File "/home/user/BitcoinArmory/armoryengine/BDM.py", line 116, in inner
    return func(*newArgs, **kwargs)
  File "/home/user/BitcoinArmory/armoryengine/BDM.py", line 246, in registerWallet
    return self.bdv().registerWallet(uniqueIDB58, prefixedKeys, isNew)
  File "/home/user/BitcoinArmory/CppBlockUtils.py", line 1417, in registerWallet
    def registerWallet(self, *args): return _CppBlockUtils.BlockDataViewer_registerWallet(self, *args)
RuntimeError: data is too large for fcgi packet
legendary
Activity: 3430
Merit: 3074
September 27, 2016, 06:47:08 PM
Uh, assuming the order is as below. In which case, yes.

1. Bitcoin
2. Armory
staff
Activity: 3374
Merit: 6530
Just writing some code
September 27, 2016, 05:40:01 PM
Getting the following with 1456a95:

Code:
-INFO  - 1475011271: (DatabaseBuilder.cpp:49) updated HEADERS db in 4202s
-INFO  - 1475011271: (BlockUtils.cpp:1608) Enabling zero-conf tracking
-INFO  - 1475011459: (BDM_Server.cpp:826) unregistered bdv: c95295fcd242ae65
-INFO  - 1475011847: (BlockchainScanner.cpp:52) no history to scan
-INFO  - 1475011934: (BlockchainScanner.cpp:52) no history to scan
-INFO  - 1475012073: (BlockchainScanner.cpp:52) no history to scan

Tx scan never happens. CPU usage tanks. No other symptoms.
Your wallet is unregistering before the scan begins. Are you starting everything in the right order?
legendary
Activity: 3430
Merit: 3074
September 27, 2016, 05:34:36 PM
Getting the following with 1456a95:

Code:
-INFO  - 1475011271: (DatabaseBuilder.cpp:49) updated HEADERS db in 4202s
-INFO  - 1475011271: (BlockUtils.cpp:1608) Enabling zero-conf tracking
-INFO  - 1475011459: (BDM_Server.cpp:826) unregistered bdv: c95295fcd242ae65
-INFO  - 1475011847: (BlockchainScanner.cpp:52) no history to scan
-INFO  - 1475011934: (BlockchainScanner.cpp:52) no history to scan
-INFO  - 1475012073: (BlockchainScanner.cpp:52) no history to scan

Tx scan never happens. CPU usage tanks. No other symptoms.
staff
Activity: 3374
Merit: 6530
Just writing some code
September 15, 2016, 11:27:55 AM
Hi

So I executed ArmoryDB, and I still get the same error, I  think the problem might come from the _CppBlockUtil.so file,
which I can't view.

I also tried running armoryd.py and it gave me th same problem.

Now I am just stuck.

Try running ArmoryQt first. There's a good chance that Armoryd and the other example scripts don't work anymore due to large architectural changes that just happened.
newbie
Activity: 29
Merit: 0
September 15, 2016, 09:33:11 AM
Hi

So I executed ArmoryDB, and I still get the same error, I  think the problem might come from the _CppBlockUtil.so file,
which I can't view.

I also tried running armoryd.py and it gave me th same problem.

Now I am just stuck.
staff
Activity: 3374
Merit: 6530
Just writing some code
September 14, 2016, 07:01:02 PM
Hi everyone,
So I am busy testing v0.94.99 now and the first script I tried was the BDMbasics_watchBalance.py script, and I am getting this error

Traceback (most recent call last):
  File "BDMbasics_watchBalance.py", line 60, in
    wlt.registerWallet(isNew=False)
  File "../armoryengine/PyBtcWallet.py", line 284, in registerWallet
    self.cppWallet = TheBDM.registerWallet(prefixedKeys, self.uniqueIDB58, isNew)
  File "../armoryengine/BDM.py", line 116, in inner
    return func(*newArgs, **kwargs)
  File "../armoryengine/BDM.py", line 246, in registerWallet
    return self.bdv().registerWallet(uniqueIDB58, prefixedKeys, isNew)
  File "../CppBlockUtils.py", line 1393, in registerWallet
    def registerWallet(self, *args): return _CppBlockUtils.BlockDataViewer_registerWallet(self, *args)
: >

Anybody got a similar error and solved it?
Start ArmoryDB in another shell. Then try again.
newbie
Activity: 29
Merit: 0
September 14, 2016, 06:09:42 PM
Hi everyone,
So I am busy testing v0.94.99 now and the first script I tried was the BDMbasics_watchBalance.py script, and I am getting this error

Traceback (most recent call last):
  File "BDMbasics_watchBalance.py", line 60, in
    wlt.registerWallet(isNew=False)
  File "../armoryengine/PyBtcWallet.py", line 284, in registerWallet
    self.cppWallet = TheBDM.registerWallet(prefixedKeys, self.uniqueIDB58, isNew)
  File "../armoryengine/BDM.py", line 116, in inner
    return func(*newArgs, **kwargs)
  File "../armoryengine/BDM.py", line 246, in registerWallet
    return self.bdv().registerWallet(uniqueIDB58, prefixedKeys, isNew)
  File "../CppBlockUtils.py", line 1393, in registerWallet
    def registerWallet(self, *args): return _CppBlockUtils.BlockDataViewer_registerWallet(self, *args)
: >

Anybody got a similar error and solved it?
legendary
Activity: 3640
Merit: 1345
Armory Developer
September 14, 2016, 03:41:21 PM
Moved 0.95 to the testing branch, dev is now for 0.96 development, and won't be stable for a while.
sr. member
Activity: 525
Merit: 282
September 10, 2016, 03:47:28 PM
Latest commit has a fix for error code 22.

I'm getting a consistent segfault on BlockDir.HeadersFirst when running on Linux. OS X passes. However, OS X chokes on BlockUtilsBare.FCGIStack and just seems to be stuck, doing nothing for hours.

Slowing zero-ing in on the underlying bug. As soon as I have it isolated it should be easy to correct. I hope to have something tomorrow.

Linux does pass CppBlockUtilsTests now but DB1kIterTest gets stuck at 100 iterations. On OSX, CppBlockUtilsTests still gets stuck on FCGIStack but passes DB1kIterTest. This is standalone, with no Valgrind.
legendary
Activity: 3640
Merit: 1345
Armory Developer
September 09, 2016, 04:14:10 AM
achow101 submitted a PR to wrap all user facing strings in the tr() method, which a step required to deploy translations. As with any large Python PR, this has the potential to break a ton of GUI.

The first step before it gets merged is to review the code. I'm inviting my testers to go over the changeset and comment places that are potentially bug prone. Essentially, all this PR should be is a set of exiting GUI strings wrapped in tr().

Once this is reviewed and merged, it will need extensive GUI testing, i.e. click on everything trying to make it break.

You can see the changes here:

https://github.com/goatpig/BitcoinArmory/pull/89/files
legendary
Activity: 3640
Merit: 1345
Armory Developer
September 08, 2016, 09:32:40 PM
Latest commit has a fix for error code 22.

I'm getting a consistent segfault on BlockDir.HeadersFirst when running on Linux. OS X passes. However, OS X chokes on BlockUtilsBare.FCGIStack and just seems to be stuck, doing nothing for hours.

Slowing zero-ing in on the underlying bug. As soon as I have it isolated it should be easy to correct. I hope to have something tomorrow.
legendary
Activity: 3430
Merit: 3074
September 08, 2016, 06:11:21 AM
Ah, that would be a legitimate convenience. Seems no-one's tried judging by the response, my guess would be it's likely Armory wouldn't be able to read the Bitcore database.

it could come down to which is easier for goatpig to code; compatibility with Trezor or compatibility with Bitcore.

Not really. I've seen the way the Bitpay organisation behaves, and don't like them. Not using their software, don't trust them.
legendary
Activity: 3640
Merit: 1345
Armory Developer
September 08, 2016, 05:24:35 AM
Latest commit has a fix for error code 22.

I'm getting a consistent segfault on BlockDir.HeadersFirst when running on Linux. OS X passes. However, OS X chokes on BlockUtilsBare.FCGIStack and just seems to be stuck, doing nothing for hours.

Should be a little better with the current push. Still getting the occasional test hanging on valgrind, will figure that out soon.

Ah, that would be a legitimate convenience. Seems no-one's tried judging by the response, my guess would be it's likely Armory wouldn't be able to read the Bitcore database.

it could come down to which is easier for goatpig to code; compatibility with Trezor or compatibility with Bitcore.

Once I implement blocks over p2p, the DB will be agnostic to the underlying node. It will be able to talk to any implementation as long as it gets the p2p layer right.
sr. member
Activity: 525
Merit: 282
September 08, 2016, 02:03:00 AM
Latest commit has a fix for error code 22.

I'm getting a consistent segfault on BlockDir.HeadersFirst when running on Linux. OS X passes. However, OS X chokes on BlockUtilsBare.FCGIStack and just seems to be stuck, doing nothing for hours.
member
Activity: 178
Merit: 10
September 07, 2016, 06:15:34 PM
Ah, that would be a legitimate convenience. Seems no-one's tried judging by the response, my guess would be it's likely Armory wouldn't be able to read the Bitcore database.

it could come down to which is easier for goatpig to code; compatibility with Trezor or compatibility with Bitcore.
legendary
Activity: 3430
Merit: 3074
September 07, 2016, 03:43:18 PM
Ah, that would be a legitimate convenience. Seems no-one's tried judging by the response, my guess would be it's likely Armory wouldn't be able to read the Bitcore database.
member
Activity: 178
Merit: 10
September 07, 2016, 02:54:07 PM
is Armory compatible with Bitcore from Bitpay?

This should be a thread in it's own right, first off.

I'm not sure that Bitcore/Armory has ever been tried. Bitcore is in many ways just a re-implementation of Bitcoin Core as far as I'm aware, but there aren't particularly compelling reasons to use it. Although I've not heard of any recent changes to the development direction that might somehow make it attractive for use with Armory? (and not your own personal convenience).

the only reason it would be nice is b/c Trezor works with Bitcore.  if Armory did as well, we could have 2 forms of cold storage options with one Bitcore database.
legendary
Activity: 3640
Merit: 1345
Armory Developer
September 06, 2016, 06:10:34 PM
droak: I've managed to reproduce the error code 22 issue with valgrind and the new test. I've split a stress test that doesn't fail on valgrind. Please build the unit tests then run DB1kIterTest with valgrind massif. This shouldn't fail. I'll be looking at error 22 in the mean time.

Thanks. Had to write a patch to get everything to compile. Smiley Anyway, when running valgrind w/ massif, it's slow as hell. I suspect this one will be running for awhile. I'll report back when it's done.

Also, just to confirm, I'll still getting the ArmoryDB crash. Haven't run the other tests yet.

Latest commit has a fix for error code 22.
Pages:
Jump to: