aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-03-09 13:34:24 -0400
committerluigi1111 <luigi1111w@gmail.com>2020-03-09 13:34:24 -0400
commit17ec003c06eb95207c91f0e9186889f83266e461 (patch)
treecf2417d5296a0720dc1d87c16d88994e6f6e115c
parentMerge pull request #6374 (diff)
parentAdded logging for dropped local txes with no i2p/tor connections (diff)
downloadmonero-0.15.0.5.tar.xz
Merge pull request #6376v0.15.0.5
6177e49 Added logging for dropped local txes with no i2p/tor connections (vtnerd)
-rw-r--r--src/cryptonote_protocol/levin_notify.cpp20
1 files changed, 16 insertions, 4 deletions
diff --git a/src/cryptonote_protocol/levin_notify.cpp b/src/cryptonote_protocol/levin_notify.cpp
index 4b41b5bfc..92f31a1c7 100644
--- a/src/cryptonote_protocol/levin_notify.cpp
+++ b/src/cryptonote_protocol/levin_notify.cpp
@@ -43,6 +43,9 @@
#include "net/dandelionpp.h"
#include "p2p/net_node.h"
+#undef MONERO_DEFAULT_LOG_CATEGORY
+#define MONERO_DEFAULT_LOG_CATEGORY "net.p2p.tx"
+
namespace cryptonote
{
namespace levin
@@ -242,6 +245,8 @@ namespace levin
if (!channel.connection.is_nil())
channel.queue.push_back(std::move(message_));
+ else if (destination_ == 0 && zone_->connection_count == 0)
+ MWARNING("Unable to send transaction(s) over anonymity network - no available outbound connections");
}
};
@@ -286,8 +291,12 @@ namespace levin
return true;
});
+ bool sent = false;
for (const boost::uuids::uuid& connection : connections)
- zone_->p2p->send(message_.clone(), connection);
+ sent |= zone_->p2p->send(message_.clone(), connection);
+
+ if (!sent)
+ MWARNING("Unable to send transaction(s), no available connections");
}
};
@@ -441,9 +450,12 @@ namespace levin
{
channel.active = nullptr;
channel.connection = boost::uuids::nil_uuid();
- zone_->strand.post(
- update_channels{zone_, get_out_connections(*zone_->p2p)}
- );
+
+ auto connections = get_out_connections(*zone_->p2p);
+ if (connections.empty())
+ MWARNING("Lost all outbound connections to anonymity network - currently unable to send transaction(s)");
+
+ zone_->strand.post(update_channels{zone_, std::move(connections)});
}
}