Bitcoin Forum
May 24, 2024, 02:47:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 233 »
2321  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 11, 2016, 06:20:44 PM
There will most likely be a substantial refactoring of armoryd for 0.96, so don't bother with fixes beyond what you need for your own operations. Chances are the code will be way different for the release.
2322  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 11, 2016, 01:13:17 PM
You may have some firewall rules getting in the way then.
2323  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 11, 2016, 01:12:29 PM
Quote
I have solved my previous problem.

What was it?

Quote
How long does this "resolving txhashes" may take place?

Considering how large your wallet is, ages. You're better off rebuilding the database with --db-type=DB_BARE
2324  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 11, 2016, 12:50:29 AM
I'm hoping to get it into testing before the month's end, however it won't yet have the armoryd fixes by then. That will come later in the testing phase.
2325  Bitcoin / Armory / Re: Cannot spend from Lockbox on: December 10, 2016, 07:00:36 PM
I'll look into it.
2326  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 10, 2016, 06:58:43 PM
armoryd has been abandonned for like like 2 years now. You should try with 0.94, which doesn't break the code as much. Otherwise, you'll have to wait till 0.96. where i'll be fixing armoryd.
2327  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 10, 2016, 10:25:07 AM
Delete your databases folder. Run ArmoryDB with --db-type=DB_BARE. Don't have time to elaborate, leaving for the day.
2328  Bitcoin / Armory / Re: Cannot spend from Lockbox on: December 10, 2016, 09:58:25 AM
Did you try to rescan?
2329  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 10, 2016, 09:57:47 AM
Wait, you are running armoryd?
2330  Bitcoin / Armory / Re: Cannot spend from Lockbox on: December 10, 2016, 12:23:57 AM
elaborate please
2331  Bitcoin / Armory / Re: Armory 0.95.1 - socket problem on: December 10, 2016, 12:23:11 AM
You most likely have 2 interfaces registered for localhost, both IPv6 and IPv4. You need to get rid of the IPv6 one.
2332  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 09, 2016, 02:31:22 PM
Looks like your last block data file is damaged.

First, shutdown Armory. Make sure ArmoryDB.exe is not running. If it is, terminate the process.

Next, open the command prompt, type in these commands:

Code:
cd C:\Program Files (x86)\Armory\

ArmoryDB.exe --thread-count=1

Last, start ArmoryQt. Then, post log files again.

2333  Bitcoin / Armory / Re: Armory 0.95.1 is out on: December 09, 2016, 02:24:28 PM
You have to give payers a SegWit address for them to pay you in that fashion. 0.95 can't create SW outputs. 0.96 let's you choose.
2334  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 09, 2016, 11:07:38 AM
Your database and blockchain data look fine so far.

Start ArmoryQt in offline mode, in Files -> Settings, turn off auto bitcoind management (the first checkbox), then shut it down.

Next, start BitcoinQt, let it catch up. Then start ArmoryQt in online mode.
2335  Bitcoin / Armory / Re: Offline mode 1.5 years unable to get out of blockchain wallet consistant on: December 08, 2016, 02:24:41 PM
Code:
-INFO  - 1481145183: (..\DatabaseBuilder.cpp:268) parsed block file #378

This is way off. This is your last block file. It should be in the #700 instead. You are missing a lot of block data.

I'll explain the model so you get an idea of what's going on:

You are running 3 pieces of software at once:

- First, your bitcoin node. This connects to the bitcoin network, downloads and maintains blockchain data. Bootstrapping the blockchain is long and resource heavy. This is the longest part of the whole process. Once you have the blockchain data, the subsequent startups will be much faster.

The data is found in saved in block files, named blkXXXXX.dat (the XXXXX represent the block file number). You can find them here:

Code:
-INFO  - 1481144202: (..\BlockUtils.cpp:1338) blkfile dir: C:\Users\Zebra\AppData\Roaming/Bitcoin/blocks

In your case, you have < 400 of these files, and that's an issue. You are missing about half the data you need to use Bitcoin properly.

- Second, ArmoryDB. This software parses the blkXXXXX.dat files directly from disk. This phase is called building the db.

The process needs to know where the blockchain data is (so far it has found it), and it needs the data to be consistent and complete. In you case, it is consistent but incomplete. Whenever this process says "Enabling zero-conf tracking", it means it has initialized and is now on standby. ArmoryDB interfaces with your node to maintain itself.

- Third, ArmoryQt. This is the client, holding your wallet data and providing the GUI. It interfaces with the DB for its needs. Your client serves the wallet data to the db. The db has to scan the wallets it is presented for the first time. This phase is called scanning the wallet history. It is the second longest, but nowhere as long as bootstrapping your node. This phase will crash if your block data is inconsistent.


Under normal circumstances, you only run the client, and it automates the other 2 processes for you. Since you are having issues, I'm having you run through the process step by step to try and troubleshoot the issue.

-------------------------

Seeing you are very short on block data, you need to start BitcoinQt and let it catch up. Consider adding server=1 in your bitcoin.conf to be get better feedback. Expect this part to take hours. Once that is done, run ArmoryDB again, then post your dbLog.txt again.

Quote
Bitcoin will never take hold when you have complicated problem with wallets. When person that hasn't designed the program and it crashes through no fault of their own is unsolvable. The keys ( solution) to the problem lay with an individual company or person to get it going.  If you piss them off or they go under you are doomed to never recover....I guess being insolent to the customer doesn't count. I will donate but it doesn't encourage me to give as much.

To run a full node solution like Armory you need good internet bandwidth, a decent computer and you can't be afraid of getting technical. Your reward is a full fledged experience and a much better understanding of Bitcoin.

If you can't/won't go through these steps, you will have to look for a more user friendly wallet, at the cost of some important properties that make Bitcoin what it is.

There will always be people on this sub forum ready to explain and help those in need. In return, you should not abuse their patience and generosity by lacking in patience yourself, making it hard for them to help you, or ignore/cherry pick their instructions. That, and be civil when possible.
2336  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 07, 2016, 04:17:05 PM
Quote
So I decided to make a factory reset (the lighest option)

That's the most extreme option...

You should refrain from trying to fix a problem you do not understand. If run into a roadblock, the best thing to do is to post your log files here and wait for a response.
2337  Bitcoin / Armory / Re: Armory DB massages, what do they mean?Armory stops DB on: December 07, 2016, 02:26:09 PM
Either let it finish scanning, or import the wallet in offline mode, then restart in online mode.
2338  Bitcoin / Armory / Re: Offline mode 1.5 years unable to get out of blockchain wallet consistant on: December 07, 2016, 09:46:22 AM
You showed me your armorylog.txt, I need to see dbLog.txt now.

If you do not have one, do the following:

- open the command line (type cmd in the Windows search bar)
- browse to your Armory installation folder (type this command in the prompt: cd C:\Program Files (x86)\Armory\)
- run ArmoryDB.exe (just type the name out and press return). Let it do its thing then post the log file.

Quote
since I seem unable to upload a screenshot

www.imgur.com

--------------------------

Do you have a brain damage as I, or did your mother just teach you rudeness? If I need to explain I wasn't writing an essay it was line by line instructions.... seems like someone so perfect could figure that above was my directory file structure since I seem unable to upload a screenshot.

I do my best and do appreciate your help but don't need humiliation or scolding, or is that your job title also? Thank you.

Since you can resort to proper English in order to insult the people helping you, you should have no problem maintaining that level of writing when asking for help.

As for your condition, I do not care. You didn't ask for special treatment before hand, so do not expect to be treated otherwise.
2339  Bitcoin / Armory / Re: Offline mode 1.5 years unable to get out of blockchain wallet consistant on: December 06, 2016, 07:48:53 PM
Do not delete any file I did not instruct you to. Just go through the motions, ignore any step that you can't perform for now. And for love of all that's alive, please try to construct grammatically sound sentences.
2340  Bitcoin / Armory / Re: Offline mode 1.5 years unable to get out of blockchain wallet consistant on: December 06, 2016, 11:48:30 AM
Your log suggests you are only using Armory 0.93.

Your blockchain history seems super old too:

Code:
-INFO  - 1452244825: (..\BlockUtils.cpp:1322) Total blockchain bytes: 50,611,985,356

This is what you should do:

1) If you have not done that yet, upgrade Bitcoin Core to 0.13.1. Then start BitcoinQt manually, let it fully catch up.

2) Install Armory 0.95.1: https://github.com/goatpig/BitcoinArmory/releases/tag/v0.95.1

3) In your datadir folder (C:\Users\Zebra\AppData\Roaming\Armory\) do the following:

- delete the /databases folder
- delete armorylog.txt and armorycpplog.txt. Your logs are too long, I need something fresh to narrow down any potential issues.

Once this is all done, make sure BitcoinQt is closed, then start ArmoryQt.exe and let it do its thing. Report here afterwards.
Pages: « 1 ... 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 [117] 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 ... 233 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!