diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-25 12:10:29 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-02-25 12:10:29 +0000 |
commit | 96ce57d5514165f83d147628474ab68dbe4f022a (patch) | |
tree | 9b472a6c6fd1d793c19af47945ee6d3c9b9b93dc /src/cryptonote_protocol | |
parent | Merge pull request #1798 (diff) | |
download | monero-96ce57d5514165f83d147628474ab68dbe4f022a.tar.xz |
protocol: tone down a rate limit not implemented yet warning
it scares users
Diffstat (limited to 'src/cryptonote_protocol')
-rw-r--r-- | src/cryptonote_protocol/cryptonote_protocol_handler-base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_protocol/cryptonote_protocol_handler-base.cpp b/src/cryptonote_protocol/cryptonote_protocol_handler-base.cpp index e06d9cd31..e31276031 100644 --- a/src/cryptonote_protocol/cryptonote_protocol_handler-base.cpp +++ b/src/cryptonote_protocol/cryptonote_protocol_handler-base.cpp @@ -122,7 +122,7 @@ cryptonote_protocol_handler_base::~cryptonote_protocol_handler_base() { void cryptonote_protocol_handler_base::handler_request_blocks_history(std::list<crypto::hash>& ids) { using namespace epee::net_utils; MDEBUG("### ~~~RRRR~~~~ ### sending request (type 2), limit = " << ids.size()); - MWARNING("RATE LIMIT NOT IMPLEMENTED HERE YET (download at unlimited speed?)"); + MDEBUG("RATE LIMIT NOT IMPLEMENTED HERE YET (download at unlimited speed?)"); // TODO } |