mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 10:37:37 -07:00
Merge pull request #5497
a59c2746
unit_tests: fix crash in debug in output_distribution test (moneromooo-monero)
This commit is contained in:
commit
2bf855e3cd
@ -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…
Reference in New Issue
Block a user