aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_core.cpp
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-10-22 10:18:28 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-10-22 10:18:28 -0500
commit426d2ac8ee9b3be3a06b057b750826496d1c0950 (patch)
treec630135ab60ac3dff91ef514b2da4399c9fe7539 /src/cryptonote_core/cryptonote_core.cpp
parent3fb85857e0346a1ff23f4d1cbc6d0d0bca101d31 (diff)
parent1ba9bafd3331f6534242e682bafbd6d863be42ed (diff)
downloadmonzero-core-426d2ac8ee9b3be3a06b057b750826496d1c0950.tar.gz
monzero-core-426d2ac8ee9b3be3a06b057b750826496d1c0950.tar.xz
monzero-core-426d2ac8ee9b3be3a06b057b750826496d1c0950.zip
Merge pull request #5981
88c9d90 protocol: initialize block_weight in block_complete_entry ctor (moneromooo-monero) fe443bb cryptonote: don't leave block_weight uninitialized (moneromooo-monero) 1ba9baf tx_pool: do not divide by 0 (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/cryptonote_core.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_core.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp
index b831cc9ff..eed5317e1 100644
--- a/src/cryptonote_core/cryptonote_core.cpp
+++ b/src/cryptonote_core/cryptonote_core.cpp
@@ -1367,6 +1367,7 @@ namespace cryptonote
{
block_complete_entry bce;
bce.block = cryptonote::block_to_blob(b);
+ bce.block_weight = 0; // we can leave it to 0, those txes aren't pruned
for (const auto &tx_hash: b.tx_hashes)
{
cryptonote::blobdata txblob;