mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 21:12:48 +01:00
38 lines
899 B
C
38 lines
899 B
C
|
// Copyright (c) 2019 The Bitcoin Core developers
|
||
|
// Distributed under the MIT software license, see the accompanying
|
||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||
|
|
||
|
#ifndef BITCOIN_INDEX_DISKTXPOS_H
|
||
|
#define BITCOIN_INDEX_DISKTXPOS_H
|
||
|
|
||
|
#include <chain.h>
|
||
|
#include <flatfile.h>
|
||
|
#include <primitives/block.h>
|
||
|
#include <primitives/transaction.h>
|
||
|
|
||
|
struct CDiskTxPos : public FlatFilePos
|
||
|
{
|
||
|
unsigned int nTxOffset; // after header
|
||
|
|
||
|
SERIALIZE_METHODS(CDiskTxPos, obj)
|
||
|
{
|
||
|
READWRITEAS(FlatFilePos, obj);
|
||
|
READWRITE(VARINT(obj.nTxOffset));
|
||
|
}
|
||
|
|
||
|
CDiskTxPos(const FlatFilePos &blockIn, unsigned int nTxOffsetIn) : FlatFilePos(blockIn.nFile, blockIn.nPos), nTxOffset(nTxOffsetIn) {
|
||
|
}
|
||
|
|
||
|
CDiskTxPos() {
|
||
|
SetNull();
|
||
|
}
|
||
|
|
||
|
void SetNull() {
|
||
|
FlatFilePos::SetNull();
|
||
|
nTxOffset = 0;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // BITCOIN_INDEX_DISKTXPOS_H
|