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)
This commit is contained in:
luigi1111 2019-10-22 10:18:28 -05:00
commit 426d2ac8ee
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
3 changed files with 4 additions and 3 deletions

View file

@ -160,7 +160,7 @@ namespace cryptonote
}
END_KV_SERIALIZE_MAP()
block_complete_entry(): pruned(false) {}
block_complete_entry(): pruned(false), block_weight(0) {}
};