diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-31 08:31:13 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-11-01 15:51:19 +0000 |
commit | 6ecc99ad1fd0f2b86641669077130394ab21e71c (patch) | |
tree | cfc05565174ab34bb387504b371f2df3c9a642af /src/blockchain_db/blockchain_db.h | |
parent | unit_tests: notify test special case for the usual weirdo (diff) | |
download | monero-6ecc99ad1fd0f2b86641669077130394ab21e71c.tar.xz |
core: avoid unnecessary tx/blob conversions
Diffstat (limited to '')
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 71c46d76b..7118b0881 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -1349,7 +1349,7 @@ public: * * @param details the details of the transaction to add */ - virtual void add_txpool_tx(const transaction &tx, const txpool_tx_meta_t& details) = 0; + virtual void add_txpool_tx(const crypto::hash &txid, const cryptonote::blobdata &blob, const txpool_tx_meta_t& details) = 0; /** * @brief update a txpool transaction's metadata |