mirror of
https://github.com/monero-project/monero.git
synced 2025-07-28 21:18:41 -04:00
Merge pull request #5413
5fafb90e
testdb: add override keyword where missing (stoffu)
This commit is contained in:
commit
e9464eb5e3
4 changed files with 106 additions and 138 deletions
|
@ -46,7 +46,7 @@ namespace
|
|||
|
||||
class TestDB: public cryptonote::BaseTestDB {
|
||||
public:
|
||||
virtual uint64_t height() const { return blocks.size(); }
|
||||
virtual uint64_t height() const override { return blocks.size(); }
|
||||
virtual void add_block( const block& blk
|
||||
, size_t block_weight
|
||||
, uint64_t long_term_block_weight
|
||||
|
@ -54,19 +54,19 @@ public:
|
|||
, const uint64_t& coins_generated
|
||||
, uint64_t num_rct_outs
|
||||
, const crypto::hash& blk_hash
|
||||
) {
|
||||
) override {
|
||||
blocks.push_back(blk);
|
||||
}
|
||||
virtual void remove_block() { blocks.pop_back(); }
|
||||
virtual block get_block_from_height(const uint64_t& height) const {
|
||||
virtual void remove_block() override { blocks.pop_back(); }
|
||||
virtual block get_block_from_height(const uint64_t& height) const override {
|
||||
return blocks.at(height);
|
||||
}
|
||||
virtual void set_hard_fork_version(uint64_t height, uint8_t version) {
|
||||
virtual void set_hard_fork_version(uint64_t height, uint8_t version) override {
|
||||
if (versions.size() <= height)
|
||||
versions.resize(height+1);
|
||||
versions[height] = version;
|
||||
}
|
||||
virtual uint8_t get_hard_fork_version(uint64_t height) const {
|
||||
virtual uint8_t get_hard_fork_version(uint64_t height) const override {
|
||||
return versions.at(height);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue