diff options
-rw-r--r-- | src/cryptonote_core/tx_pool.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index 72eff378d..6bb6189ec 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -86,8 +86,8 @@ namespace cryptonote bool have_tx_keyimg_as_spent(const crypto::key_image& key_im); bool have_tx_keyimges_as_spent(const transaction& tx); bool remove_transaction_keyimages(const transaction& tx); - bool have_key_images(const std::unordered_set<crypto::key_image>& kic, const transaction& tx); - bool append_key_images(std::unordered_set<crypto::key_image>& kic, const transaction& tx); + static bool have_key_images(const std::unordered_set<crypto::key_image>& kic, const transaction& tx); + static bool append_key_images(std::unordered_set<crypto::key_image>& kic, const transaction& tx); bool is_transaction_ready_to_go(tx_details& txd); typedef std::unordered_map<crypto::hash, tx_details > transactions_container; |