diff options
author | Zachary Michaels <mikezackles@gmail.com> | 2014-07-17 10:47:17 -0400 |
---|---|---|
committer | Zachary Michaels <mikezackles@gmail.com> | 2014-07-17 14:02:17 -0400 |
commit | 9872d205ff8fb1c961cd335c760ebf238c25ab9a (patch) | |
tree | 41acda4f8e1a1faf38bbffe488986d7f2a7c481c | |
parent | Make some tx_pool methods private (diff) | |
download | monero-9872d205ff8fb1c961cd335c760ebf238c25ab9a.tar.xz |
Make some tx_pool methods static
-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; |