aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/tx_pool.h
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-09-17 17:03:28 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2019-10-10 20:26:40 +0000
commit01f660f60fc95449130f0b6ffdb3931a6173c838 (patch)
tree3267769218e5bf7b9fc9bd870b106958d384a846 /src/cryptonote_core/tx_pool.h
parentMerge pull request #5861 (diff)
downloadmonero-01f660f60fc95449130f0b6ffdb3931a6173c838.tar.xz
blockchain: fill in cumulative block weight for alt blocks
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 877f2b82f..eade2493a 100644
--- a/src/cryptonote_core/tx_pool.h
+++ b/src/cryptonote_core/tx_pool.h
@@ -428,6 +428,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:
/**