doc: Fix typo in Coin doxygen comment

This commit is contained in:
MarcoFalke 2020-05-02 14:43:27 -04:00
parent ae32e5ce3d
commit fa09110ebb
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -6,11 +6,11 @@
#ifndef BITCOIN_COINS_H
#define BITCOIN_COINS_H
#include <primitives/transaction.h>
#include <compressor.h>
#include <core_memusage.h>
#include <crypto/siphash.h>
#include <memusage.h>
#include <primitives/transaction.h>
#include <serialize.h>
#include <uint256.h>
@ -25,7 +25,7 @@
*
* Serialized format:
* - VARINT((coinbase ? 1 : 0) | (height << 1))
* - the non-spent CTxOut (via CTxOutCompressor)
* - the non-spent CTxOut (via TxOutCompression)
*/
class Coin
{