From fa09110ebb5e485b17a767fca198819fcbe7c16e Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Sat, 2 May 2020 14:43:27 -0400 Subject: [PATCH] doc: Fix typo in Coin doxygen comment --- src/coins.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/coins.h b/src/coins.h index 2aed56c2b..aed2cc944 100644 --- a/src/coins.h +++ b/src/coins.h @@ -6,11 +6,11 @@ #ifndef BITCOIN_COINS_H #define BITCOIN_COINS_H -#include #include #include #include #include +#include #include #include @@ -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 {