From 4d25350a823866a602dca84847f7d7e3b810c823 Mon Sep 17 00:00:00 2001 From: Zachary Michaels Date: Thu, 17 Jul 2014 10:31:44 -0400 Subject: Use const where appropriate in tx_pool --- src/cryptonote_core/cryptonote_core.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/cryptonote_core/cryptonote_core.cpp') diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 2a0129f4e..751d12f79 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -452,7 +452,8 @@ namespace cryptonote //----------------------------------------------------------------------------------------------- bool core::get_pool_transactions(std::list& txs) { - return m_mempool.get_transactions(txs); + m_mempool.get_transactions(txs); + return true; } //----------------------------------------------------------------------------------------------- bool core::get_short_chain_history(std::list& ids) -- cgit v1.2.3