-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes 'ERROR: ConnectBlock: ac_staked chain failed slow komodo_checkPOW' among other things squashed 00f8aa...820b99 add zk-SNARK proofs related comments zmq: Fix due to invalid argument and multiple notifiers fix value pools calculations (#63) KomodoPlatform/komodo#604 depends: patch boost to ignore -Wnonnull new gcc 11 warnings (#64) this patch fixes errors like: ``` include/boost/concept/detail/general.hpp:39:47: warning: 'this' pointer null [-Wnonnull] 39 | static void failed() { ((Model*)0)->~Model(); } ``` during build with gcc 11.x, more details can be found here: - boostorg/concept_check#27 - boostorg/concept_check#28 build: proper clean of ./src/qt/qrc_*.cpp in clean-help Add chain supply and transparent value to block index. Co-authored-by: Jack Grigg <jack@z.cash> Co-authored-by: Kris Nuttycombe <kris@nutty.land> Co-authored-by: Daira Hopwood <daira@jacaranda.org> bump version [0.8.1.3] from 0.8.1.3 diskblockindex have new fields, related to chain supply caused by this block and delta in the transparent pool produced by the action of the transparent inputs to and outputs from transactions in this block. See the: TRANSPARENT_VALUE_VERSION constant. fix transparent pool addition for unspendable outputs chain.h: change std::nullopt to boost::none in comments introduce burned coins value pool burned coins refer to the value sent for OP_RETURN scripts: ``` "vout": [ ... { "value": 2.00000000, "valueZat": 200000000, "n": 1, "scriptPubKey": { "asm": "OP_RETURN 6465636b6572", "hex": "6a066465636b6572", "type": "nulldata" } } ], "vjoinsplit": [ ] ``` burned coins are also excluded from transparent pool. bump version [0.8.1.4] this update activates burned coins value pool, see: BURNED_VALUE_VERSION revert fMiningRequiresPeers change on CMainParams The change was made solely for debugging purposes and was accidentally included in the PR. We are now reverting that change. remove unused CompareBlocksByHeightMain comparator bump COPYRIGHT_YEAR to 2024
- Loading branch information
1 parent
8ab64b2
commit 4e1fc11
Showing
11 changed files
with
350 additions
and
33 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
diff --git a/include/boost/concept/detail/general.hpp b/include/boost/concept/detail/general.hpp | ||
index eeb08750..8d7d6f69 100644 | ||
--- a/include/boost/concept/detail/general.hpp | ||
+++ b/include/boost/concept/detail/general.hpp | ||
@@ -28,7 +28,14 @@ namespace detail | ||
template <class Model> | ||
struct requirement | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
struct failed {}; | ||
@@ -36,7 +43,14 @@ struct failed {}; | ||
template <class Model> | ||
struct requirement<failed ************ Model::************> | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
# ifdef BOOST_OLD_CONCEPT_SUPPORT | ||
@@ -44,7 +58,14 @@ struct requirement<failed ************ Model::************> | ||
template <class Model> | ||
struct constraint | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
static void failed() { ((Model*)0)->constraints(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
template <class Model> | ||
diff --git a/include/boost/concept/usage.hpp b/include/boost/concept/usage.hpp | ||
index 373de63a..fe88b5f5 100644 | ||
--- a/include/boost/concept/usage.hpp | ||
+++ b/include/boost/concept/usage.hpp | ||
@@ -13,7 +13,14 @@ namespace boost { namespace concepts { | ||
template <class Model> | ||
struct usage_requirements | ||
{ | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic push | ||
+# pragma GCC diagnostic ignored "-Wnonnull" | ||
+# endif | ||
~usage_requirements() { ((Model*)0)->~Model(); } | ||
+# if defined(BOOST_GCC) && (BOOST_GCC >= 110000) | ||
+# pragma GCC diagnostic pop | ||
+# endif | ||
}; | ||
|
||
# if BOOST_WORKAROUND(__GNUC__, <= 3) |
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
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
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
Oops, something went wrong.