unit_tests: initialize db object in ctor, not open

open isn't actually called in those tests
This commit is contained in:
moneromooo-monero 2016-01-02 11:37:00 +00:00
parent 955ad41a2d
commit a8caab1af1
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -42,10 +42,11 @@ using namespace cryptonote;
class TestDB: public BlockchainDB {
public:
virtual void open(const std::string& filename, const int db_flags = 0) {
TestDB() {
for (size_t n = 0; n < 256; ++n)
starting_height[n] = std::numeric_limits<uint64_t>::max();
}
virtual void open(const std::string& filename, const int db_flags = 0) { }
virtual void close() {}
virtual void sync() {}
virtual void reset() {}