diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:06:10 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-10-22 10:06:10 -0500 |
commit | 6f202844b5550b28674b27998cd2edc23c9735fe (patch) | |
tree | 5c97850136fc63b80815f40b53e06dfb80ed4b03 /src/cryptonote_core/tx_pool.h | |
parent | Merge pull request #5990 (diff) | |
parent | blockchain: fill in cumulative block weight for alt blocks (diff) | |
download | monero-6f202844b5550b28674b27998cd2edc23c9735fe.tar.xz |
Merge pull request #5919
01f660f blockchain: fill in cumulative block weight for alt blocks (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/tx_pool.h')
-rw-r--r-- | src/cryptonote_core/tx_pool.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/cryptonote_core/tx_pool.h b/src/cryptonote_core/tx_pool.h index 99182cd0d..dec7e3cd9 100644 --- a/src/cryptonote_core/tx_pool.h +++ b/src/cryptonote_core/tx_pool.h @@ -429,6 +429,11 @@ namespace cryptonote bool double_spend_seen; //!< true iff another tx was seen double spending this one }; + /** + * @brief get infornation about a single transaction + */ + bool get_transaction_info(const crypto::hash &txid, tx_details &td) const; + private: /** |