Merge master 0.13.2 into develop#2775
Merged
Merged
Conversation
…ashpay#2649) * Adjust help text of `register*` rpc commands Copy/paste help for various fields of `register`/`register_prepare` instead of referring to `register_fund` Adjust description of provided functionality and expected results * Adjust whitespaces to match in different protx commands * Add missing results descriptions * Introduce new helper function GetHelpString to concentrate most of param descriptions in rpcevo in one place * [MOVEONLY] Move GetHelpString out of #ifdef ENABLE_WALLET/#endif * static const
…cific way (dashpay#2652) Benchmark Dash part while at it
…#2673) Otherwise duplicate-keys checks for deterministic masternodes triggers for duplicate/identical transactions.
[0.13.x] Backport multiple PRs from develop
* Add getspecialtxes rpc Returns an array of special transactions found in the specified block * small help text tweak * add comments
Otherwise we might end up passing and invalid proTx into it, causing assertions to fail and thus crash the process.
…stsProviderTxConflict` (dashpay#2691) * Invalid ProTxes should never reach addUnchecked * Invalid ProTxes should not cause existsProviderTxConflict to crash
[0.13.x] Backport multiple PRs from develop
* Release notes v0.13.1.0 * Add a note about no proto bump * update * Add a note about downgrading to 0.13.0.0 * 0.13.0.0->0.13.1.0 Co-Authored-By: UdjinM6 <UdjinM6@users.noreply.github.com>
…tInfoString (dashpay#2687) 8e20934 build: Add CLIENT_VERSION_BUILD to CFBundleGetInfoString (fanquake) Pull request description: As mentioned in bitcoin#14697, if you download the `0.17.0.1` dmg, and inspect the `.app` bundle, the version in the GetInfo string reads `0.17.0`, which is confusing given you're expecting `0.17.0.1`: <img width="391" alt="0 17 0 1" src="https://user-images.githubusercontent.com/863730/48300032-fbb54b00-e510-11e8-9bcd-77e1fffffc63.png"> This PR adds `CLIENT_VERSION_BUILD` to the string, so that the full version number is displayed, i.e: <img width="327" alt="this pr" src="https://user-images.githubusercontent.com/863730/48300015-7893f500-e510-11e8-98b9-80424719a082.png"> Tree-SHA512: f553253d03283639cc4dda00c8004b5c63ae2b489762e5e8c666166e71b14e672792c1df678f87484d51d153b5781c5ec1b145774096600f504833024ae8baea
…on (dashpay#2698) * Do not process blocks in CDeterministicMNManager before dip3 activation This should save us some cpu/disk on initial sync/reindex * Write initial snapshot on dip3 activation
…otx diff" (dashpay#2699) * Fix incorrect usage of begin() when genesis block is requested in "protx diff" .begin() on mapBlockIndex does NOT return the genesis block, but just the block with lowest hash. The fix is to use chainActive[0] to get the genesis block. * Update src/evo/simplifiedmns.cpp Co-Authored-By: codablock <ablock84@gmail.com>
It was reported on iOS that CMerkleBlock sometimes included the dummy quorum commitments introduced with v13, which led to banning of nodes as these were not supported/expected there. We should in general only include TXs here that are of interest for SPV nodes, so we should maintain the list of allowed TX types.
…ashes (dashpay#2744) * Let Commit() return void The boolean return value will loose its meaning in the next commit * Implement 2-stage commits for CDBTransaction and CScopedDBTransaction CDBTransaction is changed to allow CDBBatch, CDBWrapper and other CDBTransactions as parent instead of just CDBWrapper. This in turn allows to implement multi-staged commits in CEvoDB. We now have the "current transaction" which is started and ended (commit or rollback) for each call to Connect-/DisconnectBlock. When the current transaction is committed, it moves its contents into the "root transaction" instead of directly writing to CDBWrapper. CommitRootTransaction() then handles the final commitment to CDBWrapper. It is called at the same time when the chainstate is flushed to disk, which guarantees consistency between chainstate and CEvoDB. * Allow to efficiently move values into parent transactions to avoid copies When CDBTransaction<CDBTransaction<...>>::Commit() is called, we can avoid copying values from this transaction to the parent transaction and instead pass values by rvalue and let the contents be moved. * Revert "Force FlushStateToDisk on ConnectTip/DisconnectTip while not in IBD (dashpay#2560)" This reverts commit 6dfceab.
[0.13.x] Backport multiple PRs from develop
* Bump version to 0.13.2 * Add release notes for 0.13.2.0 * Update credits * Add dashpay#2750 to changelog * Update doc/release-notes.md Co-Authored-By: codablock <ablock84@gmail.com>
Also move "Bump version to 0.13.2" to other
Resolved conflicts: configure.ac doc/Doxyfile doc/guide-startmany.md src/clientversion.h src/evo/deterministicmns.cpp src/evo/providertx.cpp src/qt/masternodelist.cpp src/qt/masternodelist.h src/rpc/masternode.cpp src/rpc/rpcevo.cpp src/validation.cpp
codablock
approved these changes
Mar 18, 2019
codablock
left a comment
There was a problem hiding this comment.
utACK (even though I'm still in favor of ditching this by git-flow inspired workflow :P)
This file contains hidden or 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
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.
This basically updates release notes (#2689, #2749, #2769) and chainparams (#2750) while ignoring client version bumps (#2686, #2749) and temporary litemode fix (#2694). Everything else is backports from
developtomasterwhich are merged back automagically with no changes.Reproducible via
git checkout develop && git checkout -b somebranch && git merge --no-ff masterand resolving conflict the way it's described above.