aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/blockchain.h
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2015-10-30 09:58:40 +0200
committerRiccardo Spagni <ric@spagni.net>2015-10-30 09:58:41 +0200
commit6960b1e8a9b3424fce9ce1ee5d668a1270e196cd (patch)
tree1c257c5a7ba77d9466804d3a0db8d9a9618c39ae /src/cryptonote_core/blockchain.h
parentMerge pull request #457 (diff)
parentRemove some old/obsolete/unused code (diff)
downloadmonero-6960b1e8a9b3424fce9ce1ee5d668a1270e196cd.tar.xz
Merge pull request #460
4f873bc Remove some old/obsolete/unused code (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/blockchain.h')
-rw-r--r--src/cryptonote_core/blockchain.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/cryptonote_core/blockchain.h b/src/cryptonote_core/blockchain.h
index 21bbfb447..00670c6d3 100644
--- a/src/cryptonote_core/blockchain.h
+++ b/src/cryptonote_core/blockchain.h
@@ -107,9 +107,6 @@ namespace cryptonote
bool prepare_handle_incoming_blocks(const std::list<block_complete_entry> &blocks);
bool cleanup_handle_incoming_blocks(bool force_sync = false);
- template<class archive_t>
- void serialize(archive_t & ar, const unsigned int version);
-
bool have_tx(const crypto::hash &id) const;
bool have_tx_keyimges_as_spent(const transaction &tx) const;
bool have_tx_keyimg_as_spent(const crypto::key_image &key_im) const;
@@ -276,16 +273,4 @@ namespace cryptonote
void check_ring_signature(const crypto::hash &tx_prefix_hash, const crypto::key_image &key_image,
const std::vector<crypto::public_key> &pubkeys, const std::vector<crypto::signature> &sig, uint64_t &result);
};
-
-
- /************************************************************************/
- /* */
- /************************************************************************/
-
- #define CURRENT_BLOCKCHAIN_ARCHIVE_VER 13
-
- //------------------------------------------------------------------
-
} // namespace cryptonote
-
-BOOST_CLASS_VERSION(cryptonote::Blockchain, CURRENT_BLOCKCHAIN_ARCHIVE_VER)