Bitcoin Forum
August 15, 2026, 07:37:05 AM *
News: Latest Bitcoin Core release: 31.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Bitcoin / Armory / Re: armory databases and dejadup on: May 27, 2015, 05:06:28 PM
Yes, you can avoid backing up that location. If you start armory without it, it will regenerate the data from ~/.bitcoin/blocks and the contents of your Armory wallet, which is stored in ~/.armory/*.wallet
2  Bitcoin / Armory / Re: Starting preliminary 0.94 testing - "Headless fullnode" on: May 18, 2015, 11:43:59 PM
Thank you Carlton Banks,

SIGKILL is often caused by Linux's out-of-memory killer. Linux is saying "I'm out of memory, I'm gonna kill an application that I think is to blame", and in this case it guesses Armory, which is probably the correct one. Running dmesg should show that the "OOM" event. Maybe you can confirm?

The second crash is definitely our fault, but it's hard to tell what's causing it.
3  Bitcoin / Armory / Re: When I suspend my PC with Armory open, it scans the entire blockchain on: January 06, 2015, 07:56:36 PM
0.93 should fix this, if for no other reason that so much of that code is now totally different.

I'll test for the suspend scenario there.
4  Bitcoin / Armory / Re: Armory stuck in offline mode... on: January 06, 2015, 02:41:35 AM
Provide log files.
5  Bitcoin / Armory / Re: Online armory and running a node on raspberry pi - is this possible? on: January 03, 2015, 03:03:38 AM
Yes, that is the case for Windows XP, online support. It was a consideration, but if you're using Windows XP, the machine is either pretty old and will be really slow for use with an online wallet, or you could just install a more recent windows if you want to use it online, which is a good idea since you'll then want security fixes from Microsoft.
6  Bitcoin / Armory / Re: Online armory and running a node on raspberry pi - is this possible? on: January 02, 2015, 07:16:55 PM
Armory 0.93 requires a 64 bit OS in online mode. I can't imagine a workaround existing. the RPi is 32-bit.
7  Bitcoin / Armory / Re: Armory wallet not loading balances... on: December 23, 2014, 02:03:01 AM
try rescanning, from the help menu.
8  Bitcoin / Armory / Re: Armory crashes with segmentation fault on linux mint debian edition on: December 08, 2014, 06:45:41 PM
There is a bug that has to do with the databases and how they set the file location.
 
In your log file this line tells me that you are experiencing this problem:

def SetBlkFileLocation(self, *args): return _CppBlockUtils.BlockDataManager_LevelDB_SetBlkFileLocation(self, *args) TypeError: in method 'BlockDataManager_LevelDB_SetBlkFileLocation', argument 2 of type 'string'

To correct this, you will need to simply modify how Armory starts the program.
 
Please start Armory with --satoshi-datadir="/home/yourownhomedirectory/.bitcoin/"  where "/home/yourownhomedirectory/.bitcoin" should be replaced with YOUR own home directory.
9  Bitcoin / Armory / Re: Armory long term cold storage concerns on: November 17, 2014, 08:04:32 PM
A little birdie told me that you can use https://counterwallet.io/ to create transactions and view your balance of Armory offline wallets, without ever revealing your private keys.
10  Bitcoin / Armory / Re: Problem sending transactions, not accepted by the network, please help. on: November 14, 2014, 08:16:02 PM
Go to the Help menu, choose "Rebuild and Rescan Database". And be prepared to wait a while.

That usually fixes this problem.
11  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 12, 2014, 01:52:54 AM
Whether they use BDB or LevelDB is not relevant because those blk files are not BDB or LevelDB files, so indeed that does not make a difference.

That their headers have a different format does make a difference (and I would not be surprised if they started using merged mining at the time of when your patched Armory failed).

In order to support their slightly different block format, you'll need to modify the class BlockHeader. I would recommend, for the time being, not bother making a program that supports both bitcoin and namecoin without recompiling.
12  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 11, 2014, 10:51:44 PM
It's hexdump that is exchanging the order of each pair of bytes. Give it the option -C
13  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 11, 2014, 09:19:19 PM
Open up a hex editor on that file, go to that byte offset, and see if there's anything unusual.
14  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 11, 2014, 08:57:55 PM
You got so far into the the file (229714131 bytes) that it makes me think maybe the file itself is corrupt. Try blowing away namecoind data and download its blockchain again?

But conversely, you got it in the testnet as well, so that seems unlikely.
15  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 11, 2014, 04:41:46 PM
You cannot get an instance of BlockDataManager_LevelDB from anywhere, anymore. But anywhere that calls getBlkFilename has an instance of BlockDataManagerConfig available.

I recommend you put a boolean in in BlockDataManagerConfig that sets things to namecoin mode, and then check that boolean wherever getBlkFilename is called, and maybe write a new function, or use etotheipi's old version and modify its parameters based on that.
16  Bitcoin / Armory / Re: Accessing Python variable from C++ (for adding Namecoin support to Armory) on: November 11, 2014, 03:13:13 AM
Hi Joseph,

The short answer is "you don't". The useful answer is that Armory loads the C++ side from BDM.py. There it creates a BlockDataManagerConfig object. When you create a BlockDataManagerConfig, you could specify parameters there that affect the C++ side's behavior, like the file format convention for blk files.

You're developing against the "dev" branch, right? You should.
17  Bitcoin / Armory / Re: Armory & Headers first on: October 30, 2014, 08:50:14 PM
the current dev branch supports headers first, it is being tested. The next release of armory will officially support headersfirst. Nothing to worry about!
18  Bitcoin / Armory / Re: Hard drive uptions on: August 05, 2014, 09:49:34 PM
There's little reason to put Armory's (or bitcoin-qt's) blockchain on SSD or have it encrypted from a cost-benefit point of view.
19  Bitcoin / Armory / Re: Lubuntu 13.10 + Armory, Dependency Issues on: April 19, 2014, 06:40:21 PM
The issue I've run into is that "libqtgui4" is a dependency for "libqt4-declarative", but "libqt4-declarative" is also a dependency for "libqtgui4".

Why are they both dependent on each other, so that neither can install?

This is fine for dpkg. You install all the debs that are interesting even though you get dependency errors, and then apt will install them all once you've tried to install all the packages necessary to satisfy the dependencies, with apt-get -f install
20  Bitcoin / Armory / Re: Armory - Discussion Thread on: March 21, 2014, 06:01:54 PM
in addition to what goatpig wrote, can you give us the output of `echo $OPT`
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!