diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-10-21 19:17:44 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-10-21 19:17:44 +0100 |
commit | 55178aed8c40af5099970c78890d7b5c032ad516 (patch) | |
tree | 6ddbc85479a511e786cca7a1b94a271715621192 | |
parent | Merge pull request #437 (diff) | |
download | monero-55178aed8c40af5099970c78890d7b5c032ad516.tar.xz |
unit_tests: remove leftover debug traces in hardfork test
-rw-r--r-- | tests/unit_tests/hardfork.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit_tests/hardfork.cpp b/tests/unit_tests/hardfork.cpp index 25d03b703..a8d2d381f 100644 --- a/tests/unit_tests/hardfork.cpp +++ b/tests/unit_tests/hardfork.cpp @@ -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]; } |