From 7d4ef25800564bcd393a85dd94200191831bf7cc Mon Sep 17 00:00:00 2001
From: moneromooo-monero <moneromooo-monero@users.noreply.github.com>
Date: Fri, 29 Sep 2017 16:26:57 +0100
Subject: [PATCH] rpc: fix getting txpool transactions

---
 src/rpc/core_rpc_server.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp
index e814dcc1e..da93360f5 100644
--- a/src/rpc/core_rpc_server.cpp
+++ b/src/rpc/core_rpc_server.cpp
@@ -504,6 +504,7 @@ namespace cryptonote
           {
             sorted_txs.push_back(*i);
             missed_txs.remove(h);
+            pool_tx_hashes.insert(h);
             ++found_in_pool;
           }
         }