solved issue of STAKE TXs paying out without view_tags; bumped version

This commit is contained in:
Some Random Crypto Guy
2024-10-14 10:55:57 +01:00
parent ce7a1bdd96
commit 884db2b499
6 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -577,10 +577,10 @@ namespace cryptonote
uint64_t amount = block_reward;
summary_amounts += amount;
bool use_view_tags = hard_fork_version >= HF_VERSION_VIEW_TAGS;
crypto::view_tag view_tag;
if (use_view_tags)
crypto::derive_view_tag(derivation, 0, view_tag);
bool use_view_tags = hard_fork_version >= HF_VERSION_VIEW_TAGS;
crypto::view_tag view_tag;
if (use_view_tags)
crypto::derive_view_tag(derivation, 0, view_tag);
// Should we award some of the block reward to the stakers?
if (height != 0) {