mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
Merge branch 'master' into mergemaster_0.14.0.3
This commit is contained in:
commit
c8b16fa8cd
@ -1,11 +1,11 @@
|
||||
Dash Core version 0.14.0.2
|
||||
Dash Core version 0.14.0.3
|
||||
==========================
|
||||
|
||||
Release is now available from:
|
||||
|
||||
<https://www.dash.org/downloads/#wallets>
|
||||
|
||||
This is a new minor version release, bringing various bugfixes.
|
||||
This is a new minor version release, bringing various bugfixes and improvements.
|
||||
|
||||
Please report bugs using the issue tracker at github:
|
||||
|
||||
@ -26,56 +26,88 @@ using version < 0.13 you will have to reindex (start with -reindex-chainstate
|
||||
or -reindex) to make sure your wallet has all the new data synced. Upgrading from
|
||||
version 0.13 should not require any additional actions.
|
||||
|
||||
Due to the changes in the "evodb" database format introduced in this release, the
|
||||
first startup of Dash Core will run a migration process which can take a few minutes
|
||||
to finish. After the migration, a downgrade to an older version is only possible with
|
||||
a reindex (or reindex-chainstate).
|
||||
|
||||
Downgrade warning
|
||||
-----------------
|
||||
|
||||
### Downgrade to a version < 0.14.0.0
|
||||
### Downgrade to a version < 0.14.0.3
|
||||
|
||||
Downgrading to a version smaller than 0.14 is not supported anymore as DIP8 has
|
||||
activated on mainnet and testnet.
|
||||
|
||||
### Downgrade to versions 0.14.0.0 - 0.14.0.1
|
||||
|
||||
Downgrading to older 0.14 releases is fully supported but is not
|
||||
recommended unless you have some serious issues with version 0.14.0.2.
|
||||
Downgrading to a version smaller than 0.14.0.3 is not supported anymore due to changes
|
||||
in the "evodb" database format. If you need to use an older version, you have to perform
|
||||
a reindex or re-sync the whole chain.
|
||||
|
||||
Notable changes
|
||||
===============
|
||||
|
||||
Performance improvements
|
||||
------------------------
|
||||
Slow startup times were observed in older versions. This was due to sub-optimal handling of old
|
||||
deterministic masternode lists which caused the loading of too many lists into memory. This should be
|
||||
fixed now.
|
||||
Database space usage improvements
|
||||
--------------------------------
|
||||
Version 0.13.0.0 introduced a new database (evodb) which is found in the datadir of Dash Core. It turned
|
||||
out that this database grows quite fast when a lot of changes inside the deterministic masternode list happen,
|
||||
which is for example the case when a lot PoSe punishing/banning is happening. Such a situation happened
|
||||
immediately after the activation LLMQ DKGs, causing the database to grow a lot. This release introduces
|
||||
a new format in which information in "evodb" is stored, which causes it grow substantially slower.
|
||||
|
||||
Fixed excessive memory use
|
||||
--------------------------
|
||||
Multiple issues were found which caused excessive use of memory in some situations, especially when
|
||||
a full reindex was performed, causing the node to crash even when enough RAM was available. This should
|
||||
be fixed now.
|
||||
Version 0.14.0.0 also introduced a new database (llmq) which is also found in the datadir of Dash Core.
|
||||
This database stores all LLMQ signatures for 7 days. After 7 days, a cleanup task removes old signatures.
|
||||
The idea was that the "llmq" database would grow in the beginning and then stay at an approximately constant
|
||||
size. The recent stress test on mainnet has however shown that the database grows too much and causes a risk
|
||||
of out-of-space situations. This release will from now also remove signatures when the corresponding InstantSend
|
||||
lock is fully confirmed on-chain (superseded by a ChainLock). This should remove >95% of all signatures from
|
||||
the database. After the upgrade, no space saving will be observed however as this logic is only applied to new
|
||||
signatures, which means that it will take 7 days until the whole "llmq" database gets to its minimum size.
|
||||
|
||||
Fixed out-of-sync masternode list UI
|
||||
------------------------------------
|
||||
The masternode tab, which shows the masternode list, was not always up-to-date as it missed some internal
|
||||
updates. This should be fixed now.
|
||||
DKG and LLMQ signing failures fixed
|
||||
-----------------------------------
|
||||
Recent stress tests have shown that masternodes start to ban each other under high load and specific situations.
|
||||
This release fixes this and thus makes it a highly recommended upgrade for masternodes.
|
||||
|
||||
0.14.0.2 Change log
|
||||
MacOS: macOS: disable AppNap during sync and mixing
|
||||
---------------------------------------------------
|
||||
AppNap is disabled now when Dash Core is syncing/reindexing or mixing.
|
||||
|
||||
Signed binaries for Windows
|
||||
---------------------------
|
||||
This release is the first one to include signed binaries for Windows.
|
||||
|
||||
New RPC command: quorum memberof <proTxHash>
|
||||
--------------------------------------------
|
||||
This RPC allows you to verify which quorums a masternode is supposed to be a member of. It will also show
|
||||
if the masternode succesfully participated in the DKG process.
|
||||
|
||||
More information about number of InstantSend locks
|
||||
--------------------------------------------------
|
||||
The debug console will now show how many InstantSend locks Dash Core knows about. Please note that this number
|
||||
does not necessarily equal the number of mempool transactions.
|
||||
|
||||
The "getmempoolinfo" RPC also has a new field now which shows the same information.
|
||||
|
||||
0.14.0.3 Change log
|
||||
===================
|
||||
|
||||
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.1...dashpay:v0.14.0.2).
|
||||
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.2...dashpay:v0.14.0.3).
|
||||
|
||||
- [`d2ff63e8d`](https://github.com/dashpay/dash/commit/d2ff63e8d) Use std::unique_ptr for mnList in CSimplifiedMNList (#3014)
|
||||
- [`321bbf5af`](https://github.com/dashpay/dash/commit/321bbf5af) Fix excessive memory use when flushing chainstate and EvoDB (#3008)
|
||||
- [`0410259dd`](https://github.com/dashpay/dash/commit/0410259dd) Fix 2 common Travis failures which happen when Travis has network issues (#3003)
|
||||
- [`8d763c144`](https://github.com/dashpay/dash/commit/8d763c144) Only load signingActiveQuorumCount + 1 quorums into cache (#3002)
|
||||
- [`2dc1b06ec`](https://github.com/dashpay/dash/commit/2dc1b06ec) Remove skipped denom from the list on tx commit (#2997)
|
||||
- [`dff2c851d`](https://github.com/dashpay/dash/commit/dff2c851d) Update manpages for 0.14.0.2 (#2999)
|
||||
- [`46c4f5844`](https://github.com/dashpay/dash/commit/46c4f5844) Use Travis stages instead of custom timeouts (#2948)
|
||||
- [`49c37b82a`](https://github.com/dashpay/dash/commit/49c37b82a) Back off for 1m when connecting to quorum masternodes (#2975)
|
||||
- [`c1f756fd9`](https://github.com/dashpay/dash/commit/c1f756fd9) Multiple speed optimizations for deterministic MN list handling (#2972)
|
||||
- [`11699f540`](https://github.com/dashpay/dash/commit/11699f540) Process/keep messages/connections from PoSe-banned MNs (#2967)
|
||||
- [`c5415e746`](https://github.com/dashpay/dash/commit/c5415e746) Fix UI masternode list (#2966)
|
||||
- [`fb6f0e04d`](https://github.com/dashpay/dash/commit/fb6f0e04d) Bump version to 0.14.0.2 and copy release notes (#2991)
|
||||
- [`f2443709b`](https://github.com/dashpay/dash/commit/f2443709b) Update release-notes.md for 0.14.0.3 (#3054)
|
||||
- [`17ba23871`](https://github.com/dashpay/dash/commit/17ba23871) Re-verify invalid IS sigs when the active quorum set rotated (#3052)
|
||||
- [`8c49d9b54`](https://github.com/dashpay/dash/commit/8c49d9b54) Remove recovered sigs from the LLMQ db when corresponding IS locks get confirmed (#3048)
|
||||
- [`2e0cf8a30`](https://github.com/dashpay/dash/commit/2e0cf8a30) Add "instantsendlocks" to getmempoolinfo RPC (#3047)
|
||||
- [`a8fb8252e`](https://github.com/dashpay/dash/commit/a8fb8252e) Use fEnablePrivateSend instead of fPrivateSendRunning
|
||||
- [`a198a04e0`](https://github.com/dashpay/dash/commit/a198a04e0) Show number of InstantSend locks in Debug Console (#2919)
|
||||
- [`013169d63`](https://github.com/dashpay/dash/commit/013169d63) Optimize on-disk deterministic masternode storage to reduce size of evodb (#3017)
|
||||
- [`9ac7a998b`](https://github.com/dashpay/dash/commit/9ac7a998b) Add "isValidMember" and "memberIndex" to "quorum memberof" and allow to specify quorum scan count (#3009)
|
||||
- [`99824a879`](https://github.com/dashpay/dash/commit/99824a879) Implement "quorum memberof" (#3004)
|
||||
- [`7ea319fd2`](https://github.com/dashpay/dash/commit/7ea319fd2) Bail out properly on Evo DB consistency check failures in ConnectBlock/DisconnectBlock (#3044)
|
||||
- [`b1ffedb2d`](https://github.com/dashpay/dash/commit/b1ffedb2d) Do not count 0-fee txes for fee estimation (#3037)
|
||||
- [`974055a9b`](https://github.com/dashpay/dash/commit/974055a9b) Fix broken link in PrivateSend info dialog (#3031)
|
||||
- [`781b16579`](https://github.com/dashpay/dash/commit/781b16579) Merge pull request #3028 from PastaPastaPasta/backport-12588
|
||||
- [`5af6ce91d`](https://github.com/dashpay/dash/commit/5af6ce91d) Add Dash Core Group codesign certificate (#3027)
|
||||
- [`873ab896c`](https://github.com/dashpay/dash/commit/873ab896c) Fix osslsigncode compile issue in gitian-build (#3026)
|
||||
- [`ea8569e97`](https://github.com/dashpay/dash/commit/ea8569e97) Backport #12783: macOS: disable AppNap during sync (and mixing) (#3024)
|
||||
- [`4286dde49`](https://github.com/dashpay/dash/commit/4286dde49) Remove support for InstantSend locked gobject collaterals (#3019)
|
||||
- [`788d42dbc`](https://github.com/dashpay/dash/commit/788d42dbc) Bump version to 0.14.0.3 and copy release notes (#3053)
|
||||
|
||||
Credits
|
||||
=======
|
||||
@ -83,6 +115,9 @@ Credits
|
||||
Thanks to everyone who directly contributed to this release:
|
||||
|
||||
- Alexander Block (codablock)
|
||||
- Nathan Marley (nmarley)
|
||||
- PastaPastaPasta
|
||||
- strophy
|
||||
- UdjinM6
|
||||
|
||||
As well as everyone that submitted issues and reviewed pull requests.
|
||||
@ -110,6 +145,7 @@ Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
|
||||
|
||||
These release are considered obsolete. Old release notes can be found here:
|
||||
|
||||
- [v0.14.0.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.2.md) released July/4/2019
|
||||
- [v0.14.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.1.md) released May/31/2019
|
||||
- [v0.14.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.md) released May/22/2019
|
||||
- [v0.13.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.3.md) released Apr/04/2019
|
||||
|
133
doc/release-notes/dash/release-notes-0.14.0.2.md
Normal file
133
doc/release-notes/dash/release-notes-0.14.0.2.md
Normal file
@ -0,0 +1,133 @@
|
||||
Dash Core version 0.14.0.2
|
||||
==========================
|
||||
|
||||
Release is now available from:
|
||||
|
||||
<https://www.dash.org/downloads/#wallets>
|
||||
|
||||
This is a new minor version release, bringing various bugfixes.
|
||||
|
||||
Please report bugs using the issue tracker at github:
|
||||
|
||||
<https://github.com/dashpay/dash/issues>
|
||||
|
||||
|
||||
Upgrading and downgrading
|
||||
=========================
|
||||
|
||||
How to Upgrade
|
||||
--------------
|
||||
|
||||
If you are running an older version, shut it down. Wait until it has completely
|
||||
shut down (which might take a few minutes for older versions), then run the
|
||||
installer (on Windows) or just copy over /Applications/Dash-Qt (on Mac) or
|
||||
dashd/dash-qt (on Linux). If you upgrade after DIP0003 activation and you were
|
||||
using version < 0.13 you will have to reindex (start with -reindex-chainstate
|
||||
or -reindex) to make sure your wallet has all the new data synced. Upgrading from
|
||||
version 0.13 should not require any additional actions.
|
||||
|
||||
Downgrade warning
|
||||
-----------------
|
||||
|
||||
### Downgrade to a version < 0.14.0.0
|
||||
|
||||
Downgrading to a version smaller than 0.14 is not supported anymore as DIP8 has
|
||||
activated on mainnet and testnet.
|
||||
|
||||
### Downgrade to versions 0.14.0.0 - 0.14.0.1
|
||||
|
||||
Downgrading to older 0.14 releases is fully supported but is not
|
||||
recommended unless you have some serious issues with version 0.14.0.2.
|
||||
|
||||
Notable changes
|
||||
===============
|
||||
|
||||
Performance improvements
|
||||
------------------------
|
||||
Slow startup times were observed in older versions. This was due to sub-optimal handling of old
|
||||
deterministic masternode lists which caused the loading of too many lists into memory. This should be
|
||||
fixed now.
|
||||
|
||||
Fixed excessive memory use
|
||||
--------------------------
|
||||
Multiple issues were found which caused excessive use of memory in some situations, especially when
|
||||
a full reindex was performed, causing the node to crash even when enough RAM was available. This should
|
||||
be fixed now.
|
||||
|
||||
Fixed out-of-sync masternode list UI
|
||||
------------------------------------
|
||||
The masternode tab, which shows the masternode list, was not always up-to-date as it missed some internal
|
||||
updates. This should be fixed now.
|
||||
|
||||
0.14.0.2 Change log
|
||||
===================
|
||||
|
||||
See detailed [set of changes](https://github.com/dashpay/dash/compare/v0.14.0.1...dashpay:v0.14.0.2).
|
||||
|
||||
- [`d2ff63e8d`](https://github.com/dashpay/dash/commit/d2ff63e8d) Use std::unique_ptr for mnList in CSimplifiedMNList (#3014)
|
||||
- [`321bbf5af`](https://github.com/dashpay/dash/commit/321bbf5af) Fix excessive memory use when flushing chainstate and EvoDB (#3008)
|
||||
- [`0410259dd`](https://github.com/dashpay/dash/commit/0410259dd) Fix 2 common Travis failures which happen when Travis has network issues (#3003)
|
||||
- [`8d763c144`](https://github.com/dashpay/dash/commit/8d763c144) Only load signingActiveQuorumCount + 1 quorums into cache (#3002)
|
||||
- [`2dc1b06ec`](https://github.com/dashpay/dash/commit/2dc1b06ec) Remove skipped denom from the list on tx commit (#2997)
|
||||
- [`dff2c851d`](https://github.com/dashpay/dash/commit/dff2c851d) Update manpages for 0.14.0.2 (#2999)
|
||||
- [`46c4f5844`](https://github.com/dashpay/dash/commit/46c4f5844) Use Travis stages instead of custom timeouts (#2948)
|
||||
- [`49c37b82a`](https://github.com/dashpay/dash/commit/49c37b82a) Back off for 1m when connecting to quorum masternodes (#2975)
|
||||
- [`c1f756fd9`](https://github.com/dashpay/dash/commit/c1f756fd9) Multiple speed optimizations for deterministic MN list handling (#2972)
|
||||
- [`11699f540`](https://github.com/dashpay/dash/commit/11699f540) Process/keep messages/connections from PoSe-banned MNs (#2967)
|
||||
- [`c5415e746`](https://github.com/dashpay/dash/commit/c5415e746) Fix UI masternode list (#2966)
|
||||
- [`fb6f0e04d`](https://github.com/dashpay/dash/commit/fb6f0e04d) Bump version to 0.14.0.2 and copy release notes (#2991)
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
||||
Thanks to everyone who directly contributed to this release:
|
||||
|
||||
- Alexander Block (codablock)
|
||||
- UdjinM6
|
||||
|
||||
As well as everyone that submitted issues and reviewed pull requests.
|
||||
|
||||
Older releases
|
||||
==============
|
||||
|
||||
Dash was previously known as Darkcoin.
|
||||
|
||||
Darkcoin tree 0.8.x was a fork of Litecoin tree 0.8, original name was XCoin
|
||||
which was first released on Jan/18/2014.
|
||||
|
||||
Darkcoin tree 0.9.x was the open source implementation of masternodes based on
|
||||
the 0.8.x tree and was first released on Mar/13/2014.
|
||||
|
||||
Darkcoin tree 0.10.x used to be the closed source implementation of Darksend
|
||||
which was released open source on Sep/25/2014.
|
||||
|
||||
Dash Core tree 0.11.x was a fork of Bitcoin Core tree 0.9,
|
||||
Darkcoin was rebranded to Dash.
|
||||
|
||||
Dash Core tree 0.12.0.x was a fork of Bitcoin Core tree 0.10.
|
||||
|
||||
Dash Core tree 0.12.1.x was a fork of Bitcoin Core tree 0.12.
|
||||
|
||||
These release are considered obsolete. Old release notes can be found here:
|
||||
|
||||
- [v0.14.0.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.1.md) released May/31/2019
|
||||
- [v0.14.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.14.0.md) released May/22/2019
|
||||
- [v0.13.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.3.md) released Apr/04/2019
|
||||
- [v0.13.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.2.md) released Mar/15/2019
|
||||
- [v0.13.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.1.md) released Feb/9/2019
|
||||
- [v0.13.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.13.0.md) released Jan/14/2019
|
||||
- [v0.12.3.4](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.4.md) released Dec/14/2018
|
||||
- [v0.12.3.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.3.md) released Sep/19/2018
|
||||
- [v0.12.3.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.2.md) released Jul/09/2018
|
||||
- [v0.12.3.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.3.1.md) released Jul/03/2018
|
||||
- [v0.12.2.3](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.3.md) released Jan/12/2018
|
||||
- [v0.12.2.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.2.md) released Dec/17/2017
|
||||
- [v0.12.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.2.md) released Nov/08/2017
|
||||
- [v0.12.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.1.md) released Feb/06/2017
|
||||
- [v0.12.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.12.0.md) released Aug/15/2015
|
||||
- [v0.11.2](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.2.md) released Mar/04/2015
|
||||
- [v0.11.1](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.1.md) released Feb/10/2015
|
||||
- [v0.11.0](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.11.0.md) released Jan/15/2015
|
||||
- [v0.10.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.10.0.md) released Sep/25/2014
|
||||
- [v0.9.x](https://github.com/dashpay/dash/blob/master/doc/release-notes/dash/release-notes-0.9.0.md) released Mar/13/2014
|
||||
|
@ -25,6 +25,7 @@
|
||||
|
||||
#ifdef ENABLE_WALLET
|
||||
#include "privatesend/privatesend-client.h"
|
||||
#include "privatesend-client.h"
|
||||
#include "walletframe.h"
|
||||
#include "walletmodel.h"
|
||||
#endif // ENABLE_WALLET
|
||||
|
@ -26,6 +26,8 @@
|
||||
|
||||
#include "llmq/quorums_instantsend.h"
|
||||
|
||||
#include "llmq/quorums_instantsend.h"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <QDebug>
|
||||
|
@ -657,6 +657,15 @@ public:
|
||||
CScriptBase::clear();
|
||||
shrink_to_fit();
|
||||
}
|
||||
|
||||
template<typename Stream>
|
||||
void Serialize(Stream& s) const {
|
||||
s << *(CScriptBase*)this;
|
||||
}
|
||||
template<typename Stream>
|
||||
void Unserialize(Stream& s) {
|
||||
s >> *(CScriptBase*)this;
|
||||
}
|
||||
};
|
||||
|
||||
class CReserveScript
|
||||
|
Loading…
Reference in New Issue
Block a user