aboutsummaryrefslogtreecommitdiff
path: root/src/coins.h
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-05-02 14:43:27 -0400
committerMarcoFalke <falke.marco@gmail.com>2020-05-02 19:30:58 -0400
commitfa09110ebb5e485b17a767fca198819fcbe7c16e (patch)
treed644e323ebdcf28d889fa3690f6db39b979e1434 /src/coins.h
parentae32e5ce3d268881cbf631de1903b2a414bb64e1 (diff)
downloadbitcoin-fa09110ebb5e485b17a767fca198819fcbe7c16e.tar.xz
doc: Fix typo in Coin doxygen comment
Diffstat (limited to 'src/coins.h')
-rw-r--r--src/coins.h4
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
{