]> Git Repo - VerusCoin.git/blobdiff - src/spentindex.h
Build fix
[VerusCoin.git] / src / spentindex.h
index 310ef188be9c585ff960beff969c59aae0bd80a1..9f85c62b0a3a470d413ec7ab8420e8fdd42882bb 100644 (file)
@@ -1,7 +1,7 @@
 // Copyright (c) 2009-2010 Satoshi Nakamoto
 // Copyright (c) 2009-2015 The Bitcoin Core developers
 // Distributed under the MIT software license, see the accompanying
-// file COPYING or http://www.opensource.org/licenses/mit-license.php.
+// file COPYING or https://www.opensource.org/licenses/mit-license.php .
 
 #ifndef BITCOIN_SPENTINDEX_H
 #define BITCOIN_SPENTINDEX_H
@@ -16,7 +16,7 @@ struct CSpentIndexKey {
     ADD_SERIALIZE_METHODS;
 
     template <typename Stream, typename Operation>
-    inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
+    inline void SerializationOp(Stream& s, Operation ser_action) {
         READWRITE(txid);
         READWRITE(outputIndex);
     }
@@ -34,7 +34,6 @@ struct CSpentIndexKey {
         txid.SetNull();
         outputIndex = 0;
     }
-
 };
 
 struct CSpentIndexValue {
@@ -48,7 +47,7 @@ struct CSpentIndexValue {
     ADD_SERIALIZE_METHODS;
 
     template <typename Stream, typename Operation>
-    inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
+    inline void SerializationOp(Stream& s, Operation ser_action) {
         READWRITE(txid);
         READWRITE(inputIndex);
         READWRITE(blockHeight);
@@ -95,4 +94,4 @@ struct CSpentIndexKeyCompare
     }
 };
 
-#endif // BITCOIN_SPENTINDEX_H
\ No newline at end of file
+#endif // BITCOIN_SPENTINDEX_H
This page took 0.023284 seconds and 4 git commands to generate.