Bitcoin Forum
June 30, 2024, 01:16:22 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 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 ... 233 »
1881  Bitcoin / Armory / Re: Armory 0.96 is out on: May 16, 2017, 09:37:18 PM
using the coin control feature and it seems I found why such an error.

Describe it step by step.

Quote
The number u put into field above must not exceed that one put into Manual fee/byte in File=>Settings=>Fee and Address Types. So in my oppinion the option   that allows to change the fee in Select Fee Type subwindow is missleading

Defaults do not override user inputs. You need elaborate on what you are doing or I cannot figure out what the issue is.

Quote
And one more view. 0.93.3 was allowing to see all addresses available and the fund on each of them. It was very convinient. It seems that  0.96 does not allow this and all addresses are hidden as u must to double click to make visible at least one of them but not all in bunch . i.e Wallet Properties window in 0.96.0.1 does not show all addresses available. It is not convinient

You have to widen the first column.
1882  Bitcoin / Armory / Re: Double spend? on: May 16, 2017, 08:23:15 PM
log files.
1883  Bitcoin / Armory / Re: Armory 0.96 is out on: May 16, 2017, 08:21:49 PM
Your mix of fee and spend value is more than what you can actually spend. Are you using the coin control feature or are you spending very low amounts?
1884  Bitcoin / Armory / Re: Armory 0.96 is out on: May 16, 2017, 04:13:18 PM
I am unsure what you mean with "build yourself", something different than what I did?

0.96 could not build on old CPUs cause of the broken cryptopp makefile. I assumed you were using builds instead of building from source because of that.
1885  Bitcoin / Armory / Re: 0.14.1 and 0.96-beta-a3d01aa722 on: May 16, 2017, 02:25:45 PM
I don't get what you are referring to.
1886  Bitcoin / Armory / Re: Armory 0.96 is out on: May 15, 2017, 07:10:49 PM
Build the client yourself and try with that.
1887  Bitcoin / Armory / Re: Armory 0.96 is out on: May 15, 2017, 04:35:07 PM
Build 0.96.1 and try again.

All the same segfault with v0.96.0.1-testing.

Ente

You mean the invalid instruction issue?
1888  Bitcoin / Armory / Re: Armory 0.96 is not syncing new blocks from Bitcoin Core 0.14.1 on: May 15, 2017, 04:34:22 PM
How can CBC even work with on disk encryption? If it's done by using part of the storage device to hold the IVs, no wonder it's damn slow. You should stick XTS.
1889  Bitcoin / Armory / Re: Armory 0.96 is not syncing new blocks from Bitcoin Core 0.14.1 on: May 15, 2017, 03:09:06 PM
Quote
There haven't been any sync issues (even with a slow/encrypted HDD), nice job! :-)

This is all you, I have not had time to go over the block delay. Actually it would confirm DB is doing fine on AES128 but chokes on 256
1890  Bitcoin / Armory / Re: Armory 0.96 is not syncing new blocks from Bitcoin Core 0.14.1 on: May 15, 2017, 12:38:20 PM
but I have gotten a merkle root mismatch again, BUT without any block deser exception

Getting this error alone is a false positive. The code tests no disk blocks all the time, sometimes they are partial and it won't proceed further. When it's paired with a deser error, it means a block expected to be valid was not. That's the result you want to avoid.

Quote
However during the build&scan process no exception occured what-so-ever, although my ArmoryQt crashed once and after the next start ArmoryQt was 100's of blocks smarter (above) Core...

If you did it while Core was still syncing, the code found the headers but does not yet have the block data, as Core will write the headers first, reserve the size for the block data, and commit that last part eventually.

1891  Bitcoin / Armory / Re: Armory 0.96 is out on: May 15, 2017, 12:33:46 PM
Build 0.96.1 and try again.
1892  Bitcoin / Armory / Re: What's MEMPOOL REPLACEABLE label? on: May 15, 2017, 12:11:10 AM
Quote
So what is the cause of this? What would be the worst possible outcome?

This means the incoming Tx is RBF flagged or spends from a unconfirmed output. Worst outcome is the original output is double spent and you end up with no coins. ELI5 is wait on a confirmation.
1893  Bitcoin / Armory / 0.96.1 testing build #4 on: May 14, 2017, 09:32:57 PM
Third testing builds are out.

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

Binaries:
https://github.com/goatpig/BitcoinArmory/releases/tag/v0.96.0.4

Fixes/Changes:

Code:
v0.96.1

== Added ==
   - Split unit tests building from default autotools setup. To build tests, use:
      ./configure --enable-tests.
   - You can now disable GUI in the autotools build system. Use:
      ./configure --without-gui
   - When spawned with a cookie file, the DB now randomizes its listen port to (49150 + [0-15000]) and reports it in the cookie file.
   - Added --fcgi-port command line argument to the DB.

== Fixed ==
   - ZC parsing will no long occur while the BDM is initializing
   - Wait on cookie file creation before connection to auto managed DB
   - Fixed registration/callback premature garbage collection
   - Translation patch issues
   - Fixed "Fund from wallet" lockbox GUI
   - Fixed TxIn/Out pretty printing
   - Tied init phase spinning icon rotation to progress notifications. The icon will not spin when no progress data is received, correctly
     indicating the DB is hanging.  
   - Fixed cryptopp build against older CPUs (no AES or PCLMUL archs)
   - Fixed RBF bumping with no change

== Removed ==
   - Python-twisted dependency. This should remove the underlying openSSL dependency as well.

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

Linux users:

If the build fails to run on your setup (unknown instructions), it means your CPU is missing SSE4/AES/PCLMUL instructions. There will be a fail safe gcc4.7 build without any of those instructions for the actual release, but for the testing phase, you'll want to build the code directly on your machine. The build process has been fixed so you should have an easy time with it.

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

OSX users:

Added a build for this version.
1894  Bitcoin / Armory / Re: Armory 0.96 is out on: May 14, 2017, 04:00:11 PM
I put into the 'Bitcoin Home Dir' field the location of another Bitcoin installation on an external drive (HD).

So you have 2 copies of the chain to begin with?
1895  Bitcoin / Armory / Re: Problems broadcasting transactions and keeping BLC (armory database) updated on: May 14, 2017, 01:41:09 PM
Hi thanks for replying that fast. I'm impressed.  

Just browsing the forums while I have my morning tea. Thank the tea.

Quote
To get startet Again  I created a  new directory  (g:\Armory1) and currently it is Building Again. Just to be sure - Is it still a demand to run BitcoinD and not BitcoinQT  to make it Work?

You don't need a node to be running while you build & scan (this will lower the resource requirement during that phase). You need the node running afterwards to keep your chain up to date.

Quote
The file is more that 64000 chr. I will paste the faulty part

Use pastebin next time.

Quote
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1407) Skipping this block
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766991: (..\BlockchainScanner.cpp:1407) Skipping this block
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1407) Skipping this block
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766992: (..\BlockchainScanner.cpp:1407) Skipping this block
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1407) Skipping this block
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1405) Block deser error while processing tx filters:
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1406)   raw data does not match expected block hash
-ERROR - 1494766993: (..\BlockchainScanner.cpp:1407) Skipping this block

This is an issue I think is fixed in 0.96.1. Wait for a few hours, I'll be releasing the testing builds sometimes tonight. Then rebuild your DB using that version.
1896  Bitcoin / Armory / Re: Armory 0.96 is out on: May 14, 2017, 01:15:37 PM
Just a short simple question.

Would it be possible to make in 0.96.1 in wallet properties when I click on balances, comments, tx count or addresses and so it would order them (highest, alphabetical, etc)? It doesn't seem to work right now and i'm searching my ass off when i look for a particular address or balance.

Thank You for considering

Will think about it.

Quote
This folder exists, but it's empty

Why is it empty? Do you not run your node against that folder?
1897  Bitcoin / Armory / Re: Armory 0.96 is out on: May 14, 2017, 01:14:10 PM
edit/ I mean shouldn't those blk...dat files be regenerated by bitcoin core?

They should have been. Let me look at dbLog.txt. Also, are you building the db with DB_BARE?
1898  Bitcoin / Armory / Re: Problems broadcasting transactions and keeping BLC (armory database) updated on: May 14, 2017, 01:12:45 PM
Quote
Would you need some log files from me?

I'd like to see dbLog.txt
1899  Bitcoin / Armory / Re: Armory 0.96 is not syncing new blocks from Bitcoin Core 0.14.1 on: May 14, 2017, 01:10:56 PM
Don't I have to specify in the config files, that ArmoryQt has to use this custom BDM exclusively?

Client looks for a DB on localhost:9001. If there is one, it will use that instead of spawning its own.

Quote
Because actually if a rebuild and rescan flag has een set, BDM should recognize it and so so, but it just doesn't.

The flag is given to the client. The client needs to spawn the DB itself to pass it the flag. In your case, you should spawn your DB with --rebuild, or wipe the /databases folder
1900  Bitcoin / Armory / Re: Offline signing wallet: version mismatch? on: May 14, 2017, 01:07:14 PM
No, the uninstall just gets rid of installation files. It won't touch any user files.
Pages: « 1 ... 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 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 ... 233 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!