forked from str4d/zcash
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V1.0.4 bitcore 3 #1
Merged
WaveringAna
merged 234 commits into
WaveringAna:v1.0.0-bitcore-zclassic
from
str4d:v1.0.4-bitcore-3
Mar 1, 2017
Merged
V1.0.4 bitcore 3 #1
WaveringAna
merged 234 commits into
WaveringAna:v1.0.0-bitcore-zclassic
from
str4d:v1.0.4-bitcore-3
Mar 1, 2017
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…hould be placed in a mined block.
Add checkpoint at block 2500.
…s, r=ebfull Add rpc call z_validateaddress to validate zaddrs. Closes zcash#1746.
…olations, r=ebfull Throw more descriptive exceptions when the constraint system is violated Closes zcash#1668.
Remove the lockfile at the end (fixes zcash#1731) Makes it clearer what happens in the script output if params already exist.
…xception, r=str4d Adjust consensus rule to accept genesis block without height in coinbase Closes zcash#1753
Properly account for JoinSplit value when deciding if a transaction should be placed in a mined block. Closes zcash#1705. The transaction selection logic in miner.cpp was not updated to account for JoinSplit value. This caused issues that include, but are not limited to, miners not including pure JoinSplit transactions in their blocks.
Linked Bitcoin URL
Reformatted Text
Metrics screen improvements Closes zcash#1656, zcash#1685, zcash#1688 and zcash#1716
Add build scripts and fetch-params.sh to "make install" and "make dist" Closes zcash#1728
for the purposes of secondary sorting by block order
fixes a minor bug where iteration would not end when there are matching hashes for a p2sh and p2pkh address, and would return results for both addresses
fixes a bug that would happen when an output would match an input with the same address and index, and would lead to the outputs not appearing in results.
There was a previous assumption that blockindex would be quite small. With addressindex and spentindex enabled the blockindex is much larger and the amount of cache allocated for it should also increase. Furthermore, enabling compression should decrease the amount of disk space required and less data to write/read. The default leveldb max_open_files is set to 1000, for the blockindex the default is set to 1000 with compression. The 64 value that is current is kept for the utxo database and does not enable compression. Two additional options are added here to be able to configure the values for leveldb and the block index: - `-dbmaxopenfiles` A number of files for leveldb to keep open - `-dbcompression` Boolean 0 or 1 to enable snappy leveldb compression
since there is i/o that can happen when retrieving extended input and output information, limiting the duration of the lock in getrawtransaction can help improve concurrency
usage: ./wallet-utility -datadir=<directory> help: ./wallet-utility -h
Alternative to getblock that works even when the block itself has been pruned, returning all available information.
Continues Johnathan Corgan's work. Publishing multipart messages Bugfix: Add missing zmq header includes Bugfix: Adjust build system to link ZeroMQ code for Qt binaries
prefix instead of postfix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I have no idea what im doing :D