Skip to content

Commit

Permalink
Update ConnectionManager.cs (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
fassadlr committed Feb 15, 2021
1 parent d446432 commit a57bf78
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Stratis.Bitcoin/Connection/ConnectionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,7 @@ void AddPeerInfo(StringBuilder peerBuilder, INetworkPeer peer)

int inbound = this.ConnectedPeers.Count(x => x.Inbound);

builder.AppendLine();
builder.AppendLine($">> Connections (In:{inbound}) (Out:{this.ConnectedPeers.Count() - inbound})");
builder.AppendLine("Data Transfer".PadRight(LoggingConfiguration.ColumnLength, ' ') + $": Received: {totalRead.BytesToMegaBytes()} MB Sent: {totalWritten.BytesToMegaBytes()} MB");

Expand Down

0 comments on commit a57bf78

Please sign in to comment.