Fix LLVM compilation issues
[novacoin.git] / src / zerocoin / SpendMetaData.cpp
1 /**
2 * @file       SpendMetaData.cpp
3 *
4 * @brief      SpendMetaData class for the Zerocoin library.
5 *
6 * @author     Ian Miers, Christina Garman and Matthew Green
7 * @date       June 2013
8 *
9 * @copyright  Copyright 2013 Ian Miers, Christina Garman and Matthew Green
10 * @license    This project is released under the MIT license.
11 **/
12
13 #include "Zerocoin.h"
14
15 namespace libzerocoin {
16
17 SpendMetaData::SpendMetaData(uint256 accumulatorId, uint256 txHash): accumulatorId(accumulatorId), txHash(txHash) {}
18
19 } /* namespace libzerocoin */