fix relay

This commit is contained in:
John Smith
2022-07-05 19:47:25 -04:00
parent 539f2085e9
commit 36f95692f6
4 changed files with 36 additions and 9 deletions

View File

@@ -84,6 +84,10 @@ impl RoutingTable {
for (n, gdi) in gdis.iter().enumerate() {
out += &format!(" {:>2}: {:?}\n", n, gdi);
}
out += "Own PeerInfo:\n";
out += &format!(" {:#?}\n", self.get_own_peer_info());
out
}