SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for libbitcoinconsensus0_sv-0.2.2b-1.6.i586.rpm :

* Wed Oct 30 2019 marecAATTdetebe.org- Update to version 0.2.2b:
* Version is 0.2.2 (beta)
* Update the release notes to indicate beta status
* Updated Release notes for STN
* update release notes to include the STN reset
* Set checkpoint in STN for reset of the chain. The chain is large, over 2TB, its time to reset and start from scratch.
* Remove capability to produce min difficulty blocks on STN. This capability results in regular block competitions and the requirement for stability of the network given unpredictable hash power is already covered by the new DAA.
* Reset the max orphan lenght to 5000.
* Do not allow the current outpoint to be used again when collecting dependent txns for retry.
* Process all detected double spend txns instead of discarding them.
* Fix possible deadlock identified for Clang thread sanitiser.
* Check if fee estimation can be applied before txn is being validated.
* Fix bug in GetHeightFromCoinbase for very low heights.
* Move GetHeightFromCoinbase() into the block.cpp file.
* Lock cs_main before calling StreamBlockFromDisk in unit tests.
* Add missing mutex lock to orphan txn processing.
* Fix CConman shutdown error.
* Incorrect mempool lock in transaction propagator
* Fix bsv-broadcast_delay.py by adding -txnvalidationasynchrunfreq
* reorder setting diskBlockMetadata to guarantee backward compatibility
* Fix mempool mutex and logging
* Add some extra logging for journal error cases.
* Pass CJournalChangeSetPtrs as const&
* Apply basic journal change sets as early as possible.
* Rename getSimple to getTailAppendOnly.
* Include state message in the log data message for an invalid orphan txn.
* add missing multiple make & job executions in dev jenkinsfile
* Update timeouts for test cases.
* remove the extended tests, for this set of tests we\'re interested in speed of execution
* Remove redundant log message for an orphan txn (all valid cases are alredy covered).
* Solving issues caused by the order of locks.
* lower_bound error fixed for in TxConfirmStats
* Correct log message when an orphan txn is detected
* Remove inputs from the double spend detector only by transaction that added them.
* remove code coverage from dev tests Jenkins file
* Log info update: Read mempool size & dynamic memory usage when txn is commited (in the same call).
* Change default for P2SH acceptance.
* Remove references to P2SH changes from documentation for next release.
* Fix \"use before set\" error in bsv-protoconf-versions-compatibility.py
* Fix ITF in bip68-sequence.py
* Use a larger timeout when syncing the largest block.
* Allow the accepted() timeout to be overridden.
* Update manual pages for ARK release.
* Update release number to 0.2.2
* Update release notes for ARK release candidate.
* FT update: Wait until txn is accepted by the mempool.
* Changing nTransactionsUpdated type to std::atomic_uint
* An interface update for PrioritiseTransaction - passing strHash by a const std::string reference
* Decoupling NotifyEntryAdded signal from smtx. Code formatting.
* Adding a NL suffix for trackPackageRemoved (as it is a non-locking private method).
* Replacing CCriticalSection cs (a recursive mutex) by std::shared_mutex smtx (a shared mutex).
* Changing nCheckFrequency type from uint32_t to std::atomic_uint32_t
* Change return type from bool to void for AddUnchecked & AddUncheckedNL.
* Move AddUncheckedNL to the public interface.
* Introducing a non-locking version of DynamicMemoryUsage
* An interface update: Passing a hash value via const reference.
* Putting back an explicit LOCK(mempool.cs) into blockchain.cpp methods. - At the moment I can not optimize it as CTxMemPoolEntry is not a smart ptr inside mapTx member.
* Moving implementation from .h into .cpp
* Renaming entryToJSON to entryToJSONNL as it requires to take the mempool.cs lock.
* Renaming public methods: Start a method name with a upper-case character.
* Renaming private methods: Start a method name with a lower-case character.
* Renaming private and a non-locking method UpdateForDescendants.
* Introducing a non-locking version of exists which takes Outpoint object as an argument.
* CCoinsViewMemPool: Replacing get & exists by a non-locking versions. A usage of the view is always protected by an explicit LOCK(mempool.cs) call.
* Using CalculateMemPoolAncestorsNL in getmempoolancestors as it is alredy protected by LOCK(mempool.cs)
* Introducing a non-locking version of exists & get.
* Introducing a non-locking version of isSpent
* Replacing a non-locking method CompareDepthAndScoreUnlocked by CompareDepthAndScoreNL
* Replacing a non-locking _clear by clearNL
* - Replacing ApplyDeltas by a non-locking version in AddToBlock, addPriorityTxs methods where LOCK(mempool.cs) is already used. - Replacing CalculateMemPoolAncestors by a non-locking version in addPackageTxs method where LOCK(mempool.cs) is already used. - Changing removeConflicts by a private non-locking version
* Removing an explicit LOCK(mempool.cs) from getmempooldescendants.
* Introducing a private and a non-locking version of: - UpdateForRemoveFromMempoolNL - removeUncheckedNL - RemoveStagedNL - addUncheckedNL - removeRecursiveNL - CalculateDescendantsNL
* Introducing a private and non-locking version of addUnchecked.
* Introducing a private and non-locking version of CalculateMemPoolAncestors
* Interface clean up. Use NL suffix to show which methods are non-locking.
* Submit a valid txn to the mempool in validation thread - Due to existing limitations (related to cs_main lock) TransactionAddedToMempool & Misbehaving calls need to be moved to the Validator thread
* A dedicated FT to verify a processing of P2P txns depending on node\'s configuration. - It allows to configure test cases with and without double spend money issue
* Necessary update for functional tests - Due to an aynchronous processing of txn validation
* A failure during UTs execution in debug mode. The cs_main lock is held by the Validator during txn validation. Removing AssertLogHeld from: - CheckSequenceLock - GetBlockScriptFlags - IsCurrentForFeeEstimation
* Removing an explicit reference to the global object chainActive from ContextualCheckTransactionForCurrentBlock function.
* Protect an access to pfilter during node\'s destruction.
* Introducing cs_invQueries lock to properly protect askedFor structures in mt env.
* Introducing a dedicated lock for scriptExecutionCache - removing dependency between scriptExecutionCache and cs_main lock
* Removing ATMP and related functions
* Activate synchronous validation for txns loaded from a file (LoadMempool) - Enable it using txn Validator
* Activate synchronous validation for reorg txns - Enable it using txn Validator
* Activate synchronous validation for wallet txns - Enable it using txn Validator
* Activate synchronous validation for rpc txns - Enable it using txn Validator
* COrphanTxns: Moving constexpr variables into class.
* Removing old implementation for orphan & compact block extra txns. - UT update
* P2P: Introducing a new support for orphan & compact block extra txns. - Replacing previous implementation
* Replacing ATMP by a new functionality in ProcessTxMessage method
* Adding new methods for CConnman to support P2P txns.
* This commit introduces initial txn validation support for p2p txns. - Introducing asynchronous interface into CTxnValidator - Extending validation support for p2p txns - Create an instance of the Validator - Shutdown validator before propagator - UT update for asynch interface
* Update TrimToSize method to return removed TxIds.
* Removing GetSpendHeight call from CTxMemPool::check.
* Moving orphan txn\'s config from net_processing.h into orphan_txns.h - #include \"orphan_txns.h\" will be removed when legacy code is removed from the file.
* Introducing CTxnValidator class - It supports synchronous validation interface - UTs for the validator
* Moving static FlushStateToDisk function to the header file.
* HasNoInputsOf was not protected by the mempool lock.
* Introducing TxnValidation & ProcessValidatedTxn methods - These two methods will replace ATMP - A basic, initial UT test update to verify correctness - Introducing a new logging tag - P2P txns are not fully supported by this commit
* Support a vector of outpoints to uncache.
* Mt support for CCoinsViewCache.
* CheckSequenceLocks: Take the mempool explicitly by an argument
* Moving check for conflicts with in-mempool transactions into CTxMemPool class.
* class CValidationState: Adding support for a missing inputs.
* Introducing a basic class support for orphan txns - class COrphanTxns
* Introducing a basic class support for recently rejected txns - class CTxnRecentRejects. - Currently, it will be used by p2p txns.
* Introducing a basic class support for double spend detection used during txn validation. - class CTxnDoubleSpendDetector
* Introducing basic classes to support parallel validation - CTxInputData - an instance of this class will be used to represent a txn and all related data required to trigger validation - CTxnValResult - an instance of this class will be used to return a result of validation - A validation config file
* Use GetCurrentThreadId on cross-compile build for Windows.
* Boost.Test: Solving an ambiguous overload for nullptr.
* Missing files in Makefile configuration.
* include thread name only at the beginning of new lines
* Prevent JournalingBlockAssembler from locking same CJournal twice in a single thread
* Fix #define clash with enumeration on some Windows builds.
* Remove std move from return statement
* Move common test functions outside anonymous namespace
* Deletion of dead code
* Replacement of braces around scalar initializer
* add missing using statement requried by MSVC compiler
* fix: Error C2361 initialization of \'journalingAssembler\' is skipped by \'default\' label
* Race condition in p2p node messages access
* process batch of RPC requests in chunks
* remove blockToJSON method
* send blocks in chunks for RPC (for all verbosity options)
* send blocks in chunks for REST (bin, hex, json)
* add functional test for -acceptP2SH
* Discourage usage of P2SH in output script.
* document P2SH policy change
* add support for sending replies in chunks with eventlib
* add HAVE_DECL_DAEMON define to cmake build
* add bitcoin-miner to CMakeLists
* pipe-functionaltests.py edited online with Bitbucket
* Update functional test for journaling assembler.
* Improve the performance of the journal tester.
* Add new RPC commands for controlling the journal.
* Reduce ITFs within bsv-factorMaxSendQueuesBytes.py
* Tests for the new journaling block assembler.
* Ensure the journal is invalidated whenever the tip changes.
* Fix up the factory to create the appropriate block assembler type.
* The new journaling based block assembler.
* Add check for candidate builder being updated.
* Update locking for the journal.
* Refactor common code.
* Add fee and sigops counts to the journal.
* Allow iterating over the current journal.
* Allow block assembler type to be configured.
* Change sets don\'t need to be shared.
* Jenkinsfile edited online with Bitbucket. Removed code coverage on request.
* vNodes in ParallelForEachNode was no longer thread safe
* Additional logging in bsv-factorMaxSendQueuesBytes.py test
* Debug log duration for p2p request processing that takes too long
* Make SendMessage a CNode function
* Wrap net_processing most recent block caching
* Async file reader support for streams
* Use disk block streaming for gettxoutproof rpc request
* Use streams for wallet transaction scanning
* Convert merkle block sending to read block data from a stream
* Stream CBlockHeaderAndShortTxIDs creation from disk block
* Test that calling UnlinkPrunedFiles doesn\'t terminate opened streams
* Move disk block file size and hash info into CBlockIndex class
* Enable block from disk streaming
* Handle block file pruning for files with open file handles
* Added CBlock stream deserialization into CBlockHeader and CTransaction entries
* Extend network streams support to CSerializedNetMsg
* Conversion of message buffer to chunked streaming capable containers
* Added System requirements to manual.
* removig limit to only one OP_RETURN
* Fix failure in mining_journal.py.
* add missing using statements required by MSVC compiler
* update tests data for transactions with data; use os.path.join for joining paths
* Fix the block timestamps so they are not now too far in the future.
* Now build only develop branch, not all; added slack notifications.
* Fix race in mining_api.py
* Add a test method for checking the journal.
* Unit tests for journaling.
* Move ActivateBestChain call inside InvalidateBlock.
* Add hooks for journal change set.
* Allow querying of the current journal size over RPC.
* Classes to support journal tracking of changes to the mempool.
* Add new logging catagory for the journal.
* Allow mempool ancestor count details to be shared.
* Add enum_cast.
* Functional test for transaction ordering and journaling.
* slackSend notifications added
* Jenkinsfile edited online with Bitbucket
* CRYPTO_USE_ASM should be set in CMake list before first use.
* Fix for cmake build when wallet is disabled
* Fix for autotools build when wallet is disabled
* add blockmaxsize switch to avoid all transactions being included in one block
* set bitcoind time to be before activation time
* rename some error messages
* use OP_FALSE OP_RETURN when generating transactions using data through rpc createrawtransaction and bitcoin-tx
* Jenkinsfile edited online with Bitbucket
* Jenkinsfile edited online with Bitbucket
* Jenkinsfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Dockerfile edited online with Bitbucket
* Jenkinsfile edited online with Bitbucket
* cpanm term::readline
* relocated
* relocated under contrib directorY
* devops files relocated here from the top level; appropriate change to Dockerfile
* Update release notes after Orinoco release.
* add thread name in debug log
* Move run_connections to test_framework.py
* new files for the CI pipeline and to execute tests when SV is built
* Add functional tests for protoconf message
* Scale number of transactions we request in single GETDATA message with effective allowed protocol message length of the remote peer (instead of limiting it to 1000) Remove MAX_INV_SZ - it is not used anymore.
* Scale number of entries in mapAskFor and setAskFor with maximum protocol message length.
* Scale the limits for number of INV elements with protocol message size:
* Define protoconf message, send and process protoconf message, define LEGACY_MAX_PROTOCOL_PAYLOAD_LENGTH and MAX_PROTOCOL_SEND_PAYLOAD_LENGTH
* Implement CInv::estimateMaxInvElements
* Rename MAX_PROTOCOL_MESSAGE_LENGTH to MAX_PROTOCOL_RECV_PAYLOAD_LENGTH, rename nMessageSize to nPayloadLength
* Use relative activation time for functional tests.
* add test for logging time difference between block timestamp and received headers timestamp
* Fixed the comment about picking the more honestly mined block
* Merged logging block diff times from Bitcoin ABC
* add test for rest/block for bigger blocks
* remove redundant static object
* Move error messages to Config class to consolidate checks for invalid parameters at once location
* Adding rpc and command line setblockmaxsize
* Removed check in the GlobalConfig::SetMaxGeneratedBlockSize
* add tests for verifyblockcandidate RPC call
* verifyblockcandidate implementation
* Disable USE_ASM when building with autotools
* Documentation for use of sanitizers
* Use of LegacyBlockAssembler as BlockAssembler without virtual destructor
* Fix for CRollingBloomFilter use race condition
* mTemplates variable population should not cause a thread race condition
* Let g_connman terminate propperly
* Deleted unused variable that was experiencing undefined behaviour
* Support for CMake build with clang static analyzer
* Added undefined behaviour sanitizer for gcc and clang development support
* Division by 0 - detected by undefined behaviour sanitizer
* Addition of thread sanitizer
* Race condition detected by thread sanitizer
* Add support for enabling address sanitizer for gcc and clang builds
* sha256_sse4.cpp should not be built if CRYPTO_USE_ASM is disabled
* Remove additional versionbits code, add comments
* Tests for csv (bip9) modified
* Activate CSV using block height (not bip9)
* Remove the rest of BIP9 code
* API change: Remove BIP9 related result and arguments from getblocktemplate
* Remove BIP9 from setting block version
* Remove BIP9 csv activation
* Remove BIP9 version bits warning
* Remove BIP9 associated tests
* Cleanup after backport
* Remove bip9 from getblockchaininfo RPC call
* Remove the -bip9params flag
* Fri Jul 12 2019 marecAATTdetebe.org- Update to version 0.2.1:
* Update release notes
* Update release notes
* Update release notes
* Update Release information
* Fix deep JSON mitigation problem.
* Introduce REJECT_TOOBUSY reject code and timeout when node is overloaded
* Limit total size of currently sending block messages
* add possibility for verbosity argument to be string in getblock call (RAW_BLOCK, DECODE_HEADER, DECODE_TRANSACTIONS)
* add enum for argument verbosity of getblock rpc call
* Move -preload help message from RPC to general section
* add functional tests for getblock
* add checks for incorrect verbosity parameter to RPC getblock
* add comment on implementation of obtaining verbosity value
* refactor TxToJSON() and ScriptPubKeyToJSON()
* Use a verbosity instead of two verbose parameters
* RPC: Allow multiple names for parameters
* Include libgen.h on Linux and Mac.
* Remove duplicate calculation of pindexPrev.
* Replace MAC_OSX define with __APPLE__
* excluding VMTouch code from build on windows
* Rename EncodeLegacyAddr and DecodeLegacyAddr with EncodeBase58Addr and DecodeBase58Addr
* Remove the Bitcoin ABC cashaddr address format
* Tidy up GetMerkleProofBranches()
* Remove unnecessary call to MkBlockTemplateVersionBits().
* Add bounds checking within CBlokc::GetHeightFromCoinbase().
* Update test for -blockvaliditytest flag.
* Make block validity checking from new mining candidate optional.
* Add config option to control whether we run TestBlockValidity().
* Update the OpenBSV license to specifically license test networks.
* array.tostring deprecated alias for tobytes
* OP_FALSE,OP_RETURN behaves in the same way as OP_RETURN
* Removed CScript::IsCommitment because it is not used
* Return info about % of chainstate that is currently loaded in RAM as part of getmmemoryinfo RPC call
* Preload UTXO dataset at startup to speed up transaction validation.
* Tue May 21 2019 marecAATTdetebe.org- Update to version 0.2.0:
* Adding the test for mining from an old block candidate.
* Update unit tests for stricter MiningCandidate interface.
* Record block header fields with mining candidate.
* Update license to belong to Bitcoin Association
* Fix crash with new mining API.
* Minor documentation updates. Add a document for the public keys.
* Optimizing test to reduce memory consumption.
* Improve stability of pruning functional test.
* Update of the release notes for version 0.2.0 and of the Responsible Disclosure Policy.
* Update man pages by contrib/devtools/gen-manpages.sh
* Link with bcrypt.lib when building on Windows. This is required by the new mining API (CORE-13/SV-342) which uses boost uuid library
* Update the copyright and license information in source files.
* Change default for -datacarriersize to 100KB which enables us to relay larger OP_RETURNS by default.
* Move dataCarrierSize, limitDescendantSize and limitAncestorSize to config.
* Set the timeout for block sync during tests to 300 seconds, to support large blocks.
* Performance optimization of mininode serialization code - use \"join\" instead of \".\" when concatenating arrays
* Removed remaining usage of global constants DEFAULT_MAX_BLOCK_SIZE and DEFAULT_MAX_GENERATED_BLOCK_SIZE, since defaults are now network specific. Updated HelpMessage() to reflect new meaning of command line switches -blockmaxsize and -excessiveblocksize
* Added unit test for block size related configuration
* Unit test cleanup
* Removed workaround introduced in 81dc539b. It made sense when configuraiton values were stored in global variables. They were later moved to instance variables making this code noop.
* Make sure that GlobalConfig::SetDefaultBlockSizeParams has been called before using GLobalConfig
* added added -blocksizeactivationtime parameter, added GetMax[Generated]BlockSize overloads that take time and use them when mining/validating blocks
* -blockmaxsize moved to config
* Added DefaultBlockSizeParam to config, which are initialized per-chain. Activation is not implemented in this commit.
* Rename Block::GetHeight() to GetHeightFromCoinbase() to be more specific.
* Use static hasher when checking transactions.
* Only call CheckBlock() once when validating a new block template.
* Add an entry for bitcoin-cli to convert coinbase arg to getminingcandidate.
* Fixup example CPU miner to work with the new API.
* Remove old mining test.
* A test for the new mining API.
* Complete submitminingsolution.
* Use a UUID for the mining candidate IDs.
* Add coinbaseValue to result of getminingcandidate.
* Make provision of coinbase txn by getminingcandidate optional.
* Allow user to specify timeout for sync_all()
* Allow overriding of test binary from within test.
* Add for secp256k1 & univalue tests as well
* Update release notes for v0.2.0
* Insert original license holder.
* Update the license to the Open BSV License.
* Add missing \'make\' optimization for code coverage step
* Replace more references to BCH with BSV
* Fix MSVC build by adding a static cast in ReadVarInt to handle template instantiations that still incorrectly use signed int.
* Refactor CMiningCandidate into its own full class with its own manager.
* Refactor CBlockTemplate. Convert the block member object to a shared pointer.
* Refactor BlockAssembler. Create interface BlockAssembler & rename class to LegacyBlockAssembler. Add CMiningFactory.
* re-organise mining into sub-directory
* Added initial help text
* Incorrect comments syntax.
* Fixes as a result of code-review.
* Changes in response to pull request review and issue found by Brad with block chain height in coinbase in getminingcandidate
* New BU-spec mining interface (getminingcandidate)
* First tested version of BU getminingcandidate iterface - includes CPU miner (bitcoin-miner)
* Initial implementation of getminingcandidate and submitminingsolution.
* Add new checkpoint (block 2951) to STN.
* change name of log file to bitcoind.log from debug.log (part #3) - documentation and comments
* change name of log file to bitcoind.log from debug.log (part #2) - source code
* Fix ITF in example_test.py
* Test sending blocks larger than default preferredBlockfileSize
* parametrize excessive_block_size in test
* make blockFileSize configurable, rename MAX_BLOCKFILE_SIZE global variable - it now reflects preferred file size
* Add missing blockfileinfostore.h for gitian build.
* Add command line option -rejectmempoolrequest. When present, P2P mempool request form non-whitelisted peers are rejected. Updated p2p-mempool test
* Bump ZeroMQ version to 4.3.1
* Set DEFAULT_RUN_FREQUENCY_MILLIS to 250ms.
* Set default broadcastDelay to 150ms, add tests for broadcastDelay
* remove max ecessive size relation to max block file size
* Remove mallopt setting for 32-bit systems.
* Remove dead code related to ABC\'s forced obsolescence
* Remove tests related to ABC\'s forced obsolescence and regenerate sighash.json
* Use C++11 default initialisation for CNode.
* Add test for unsolicited addr messages.
* Add addresscount field to getnetworkinfo RPC command.
* Don\'t relay additional addresses on outbound connections.
* Ignore unsolicited ADDR messages.
* Removed GetBlockFileInfo from validation.h
* Moved CBlokFileStore related functions to a separate file
* Fix log spamming issue.
* Add comments
* Back to parallel jobs in functional tests
* Add leveldb tests
* Add Jenkinsfile
* Moved Open
*File family of functions to a helper class. Moved part of reindexing code into ReindexAllBlockFiles (validation.cpp) to make it possible to remove OpenBlockFile from validation.h
* Moved global setDirtyFileInfo to CBlockFileInfoStore
* Removed globals cs_LastBlockFile, vinfoBlockFile and nLastBlockFile - they have been moved to CBlockFileInfoStore
* Added CBlockFileInfoStore::GetLock() and used that instead of single remaining usage of global cs_LastBlockFile. Removing call to LOCK() FlushStateToDisk (line 2418) is not the option despite the fact, that some of the CBlockFileInfoStore functions already acquire the same lock and we could add locking to the remaining few. This would change locking semantic from a lock that is held for whole period from line to 2418 to line 2556 to multiple non-continuous locking of the same lock. In periods when lock is not held, another thread could perform modifications to pBlockFileInfoStore resulting in possible inconsistent state.
* Added accessor CBlockFileInfoStore::GetnLastBlockFile()
* Added accessor CBlockFileInfoStore::GetBlockFileInfo
* Extracted code to CBlockFileInfoStore::Clear
* Extracted code into CBlockFileInfoStore::ClearFileInfo()
* Extracted method CBlockFileInfoStore::GetAndClearDirtyFileInfo()
* Extracted loading code into CBlockFileInfoStore::LoadBlockFileInfo method.
* Moved FlushBlockFile into CBlockFileInfoStore
* Moved FindUndoPos into CBlockFileInfoStore, changed signature to remove direct usage of global variable fCheckForPruning
* Moved FindFilesToPruneManual into CBlockFileInfoStore
* Moved FindFilesToPrune into CBlockFileInfoStore
* Moved FindBlockPos into CBlockFileInfoStore, added explicit parameter fCheckForPruning
* Moved CalculateCurrentUsage int class. This (and further commits) are WIP. The code compiles, but it will not work until refactoring is finished.
* Added comment about BLOCKFILE_BLOCK_HEADER_SIZE
* Remove special branch for reconfiguring pipeline
* Fixed executable flags on python files
* Added Windows build documentation
* Added `--buildconfig` parameter to specify which Windows build configuration is used by functional test runner. On windows, copy test runner (and associated files) to build directory instead of creating symbolic links to them. CMake\'s make_link does not work on Windows and creating symbolic links through Window\'s mklink required elevated privileges.
* Skip symlink wallet test on windows, where users usually do not have SeCreateSymbolicLinkPrivilege activated.
* Fix versionbits functional tests. When running \"echo \'x y\' >somefile\", Windows will store single quotes as part of the file content, but Linux will not. To handle both cases, we we now search for substring instead of exact match
* use cross platform filenames in wallet_dump functional test
* Do not globally import fcntl in functional tests. It is not present (nor used) on Windows
* Remove --forced from test_runner.py. Functional tests are not disabled on Windows anymore
* qa: Prepare functional tests for Windows
* MSVC compatibility: fix signed/unsigned mismatch error
* bench: prefer a steady clock if the resolution is no worse
* bench: switch to std::chrono for time measurements
* Remove countMaskInv caching in bench framework
* Removed bitcoin seeder from MSVC build since it is not cross platform
* MSVC compatibility: exclude secp2561k benchmarks from MSVC build, since they use non standard time functions
* MSVC compatibility: Removed dependency on BDB C API- we still used BDB_CXX. Use versioned library name with MSVC
* MSVC compatibility: linq targets that use zmq with ip helper
* MSVC compatibility: test_bitcon now uses cross platform way of finding python. Bumped dependency to python3 (that is also used by functional tests)
* MSVC compatibility: link with crypt32.lib - required for openssl
* MSVC compatibility: fix compiler options - use static runtime (/MT), undefine NDEBUG
* MSVC compatibility: fix zmq library name
* MSVC compatibility: use supported scalar and field implementations that do not required inline assembly or int128 support (but is probably slower)
* Fixed check_builtin_exist() CMAKE macro that failed to correctly set the value of cahced variables resulting in incorrect #defines
* Resolved initialization order warning
* Generate bench block-header-include in platform independent way
* Squelch non-virtual destructor warning
* Convert C-style casts to reinterpret_cast
* MSVC and clang compatibility: random_shuffle has been removed from C++17. Use std:suffle instead
* MSVC compatibility: do not use designated initializers (c++20)
* MSVC compatibility: include cstdint, define ssize_t, do not use ssize_t for NUM_OS_RANDOM_BYTES
* MSVC compatibility: levedb fixes: - define ssize_t, - undefine snprintf macro - do not include unistd.h
* MSVC compatibility: Use .data() instead of std::begin() to get pointer to the first byte of std::array, since std::begin() returns an iterator which is not implicitly convertible to void
*
* Remove magnetic activation parameters and check function.
* Remove check for re-org across the magnetic upgrade point.
* Remove the SCRIPT_ENABLE_MAGNETIC_OPCODES flag.
* Remove the magnetic upgrade 128MB block size activation.
* Remove MAGNETIC_MAX_OPS_PER_SCRIPT.
* Increase max no of opcodes per script to 500, independently of the magnetic upgrade.
* Remove magnetic activation for the re-enabled opcodes.
* By default only build for amd_64.
* Code fixes for C++17.
* Add windows Gitian build.
* Riscv64 fixups.
* Replace gitain-build.sh with gitian-build.py
* Update symbol-check.py to latest version from ABC.
* Wrap log2f and __divmoddi4 functions.
* Update gitian-linux.yml.
* Fixup ITF in function test.
* Fix race in ActivateBestChain()
* Return after processing reject.
* Tidy up Misbehaving locks.
* Refactor P2P message processing.
* C++17 for cmake
* fix typo - error message after return
* bitbucket pipeline for C++17
* add testnet seeder
* typo in seed name
* Update build docs for newer GCC version.
* Update m4 build macros.
* Update the build to mandate C++17.
* add txn_propagator to CMakeLists.txt
* Updates after another review
* Updates following code reviews
* fixed test for 32-bit build and changed the json parse depth default value to be constexpr rather than a magic number in the constructor
* Removed the conditional build of the JSON parse checking
* Updates after comments from the previous pull requests
* Updates for comments after the previous pull request
* Commit updated tests for bloom filters
* Fixed rebase/merge conflict
* Updated tests for bloom filters, blockcheck sizes and serializing data
* Fixed rebase/merge conflict
* Updated both BloomFilter constructors to throw an exception in the event of invalid parameters
* Fix to mitigate a possible stack exhaustion during JSON deallocation
* Fix for undefined behaviour if an incorrect or invalid argument is passed to the Bloom filter constructor
* Allow user to set magicByte separating testnet
* Tue Feb 12 2019 marecAATTdetebe.org- Update to version 0.1.1:
* updated release notes
* change name of log file to bitcoind.log from debug.log
* Add txn src logging.
* Allow logging to multiple catagories.
* correct nPruneAfterHeight for STN
* update test to be independent of version
* Updates for release 0.1.1
* Fixup lcov make target.
* use DEFAULT_MAX_BLOCK_SIZE
* Bump protocol message length
* add unit tests for CMessageHeader from protocol.[h|cpp]
* Sat Jan 05 2019 marecAATTdetebe.org- initial package build
 
ICM