Merge pull request #1371

8dadf02 Fixed undefined behavior in TestDB (Lee Clagett)
This commit is contained in:
Riccardo Spagni 2016-11-24 13:01:05 +02:00
commit 4248d5131c
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -117,7 +117,7 @@ public:
blocks.push_back(blk);
}
virtual block get_block_from_height(const uint64_t& height) const {
return blocks[height];
return blocks.at(height);
}
virtual void set_hard_fork_version(uint64_t height, uint8_t version) {
if (versions.size() <= height)
@ -125,7 +125,7 @@ public:
versions[height] = version;
}
virtual uint8_t get_hard_fork_version(uint64_t height) const {
return versions[height];
return versions.at(height);
}
virtual void check_hard_fork_info() {}