Merge pull request #5497

a59c2746 unit_tests: fix crash in debug in output_distribution test (moneromooo-monero)
release-v0.6.1.2
Riccardo Spagni 5 years ago
commit 2bf855e3cd
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -62,6 +62,13 @@ public:
return d;
}
std::vector<uint64_t> get_block_weights(uint64_t start_offset, size_t count) const override
{
std::vector<uint64_t> weights;
while (count--) weights.push_back(1);
return weights;
}
uint64_t blockchain_height;
};

Loading…
Cancel
Save