diff options
author | MarcoFalke <falke.marco@gmail.com> | 2020-05-02 14:43:27 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-05-02 19:30:58 -0400 |
commit | fa09110ebb5e485b17a767fca198819fcbe7c16e (patch) | |
tree | d644e323ebdcf28d889fa3690f6db39b979e1434 | |
parent | ae32e5ce3d268881cbf631de1903b2a414bb64e1 (diff) |
doc: Fix typo in Coin doxygen comment
-rw-r--r-- | src/coins.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coins.h b/src/coins.h index 2aed56c2bd..aed2cc9443 100644 --- a/src/coins.h +++ b/src/coins.h @@ -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 { |