aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/tx_pool.h
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-10-22 10:06:10 -0500
committerluigi1111 <luigi1111w@gmail.com>2019-10-22 10:06:10 -0500
commit6f202844b5550b28674b27998cd2edc23c9735fe (patch)
tree5c97850136fc63b80815f40b53e06dfb80ed4b03 /src/cryptonote_core/tx_pool.h
parentMerge pull request #5990 (diff)
parentblockchain: fill in cumulative block weight for alt blocks (diff)
downloadmonero-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.h5
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:
/**