From 53a7af82a08642b2f0e264739b3b5dad809cb40b Mon Sep 17 00:00:00 2001 From: Deirdre Connolly Date: Tue, 28 Jan 2020 01:25:47 -0500 Subject: [PATCH] Add back a missing quotemark Co-Authored-By: Henry de Valence --- zebra-network/src/protocol/internal/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zebra-network/src/protocol/internal/response.rs b/zebra-network/src/protocol/internal/response.rs index 4ec617d9..8441e507 100644 --- a/zebra-network/src/protocol/internal/response.rs +++ b/zebra-network/src/protocol/internal/response.rs @@ -14,7 +14,7 @@ pub enum Response { Error, /// A list of peers, used to respond to `GetPeers`. Peers(Vec), - /// A list of transactions, such as in response to `GetMempool + /// A list of transactions, such as in response to `GetMempool`. Transactions(Vec), }