We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ddfdef commit 0eb9a5dCopy full SHA for 0eb9a5d
protocol/txsubmission/server.go
@@ -109,9 +109,13 @@ func (s *Server) RequestTxIds(
109
110
// RequestTxs requests the content of the requested TX identifiers from the remote node's mempool
111
func (s *Server) RequestTxs(txIds []TxId) ([]TxBody, error) {
112
+ var txString []string
113
+ for _, t := range txIds {
114
+ txString = append(txString, fmt.Sprintf("%x", t))
115
+ }
116
s.Protocol.Logger().
117
Debug(
- fmt.Sprintf("calling RequestTxs(txIds: %+v)", txIds),
118
+ fmt.Sprintf("calling RequestTxs(txIds: %+v)", txString),
119
"component", "network",
120
"protocol", ProtocolName,
121
"role", "server",
0 commit comments