unit_tests: remove leftover debug traces in hardfork test

This commit is contained in:
moneromooo-monero 2015-10-21 19:17:44 +01:00
parent 14dd279fe1
commit 55178aed8c
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -116,11 +116,9 @@ public:
return starting_height[version];
}
virtual void set_hard_fork_version(uint64_t height, uint8_t version) {
printf("set_hard_fork_version(%lu, %u)\n", (unsigned long)height, version);
if (versions.size() <= height) versions.resize(height+1); versions[height] = version;
}
virtual uint8_t get_hard_fork_version(uint64_t height) const {
printf("get_hard_fork_version(%lu)\n", (unsigned long)height);
return versions[height];
}