mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-22 15:04:44 +01:00
Merge #18854: doc: Fix typo in Coin doxygen comment
fa09110ebb
doc: Fix typo in Coin doxygen comment (MarcoFalke) Pull request description: `CTxOutCompressor` has been renamed in commit4de934b9b5
, so rename it in the docs as well. ACKs for top commit: laanwj: ACKfa09110ebb
hebasto: ACKfa09110ebb
Tree-SHA512: e16a21ac3112a67ee7d5ffabb3f47103aed8f91fdebf1bf96311cd0b7bdb9b7323ed826bfa95517386d4128ff0ae2c7c13bad047a7c5a0cc2458be7a43119157
This commit is contained in:
commit
dd3310bbb8
1 changed files with 2 additions and 2 deletions
|
@ -6,11 +6,11 @@
|
||||||
#ifndef BITCOIN_COINS_H
|
#ifndef BITCOIN_COINS_H
|
||||||
#define BITCOIN_COINS_H
|
#define BITCOIN_COINS_H
|
||||||
|
|
||||||
#include <primitives/transaction.h>
|
|
||||||
#include <compressor.h>
|
#include <compressor.h>
|
||||||
#include <core_memusage.h>
|
#include <core_memusage.h>
|
||||||
#include <crypto/siphash.h>
|
#include <crypto/siphash.h>
|
||||||
#include <memusage.h>
|
#include <memusage.h>
|
||||||
|
#include <primitives/transaction.h>
|
||||||
#include <serialize.h>
|
#include <serialize.h>
|
||||||
#include <uint256.h>
|
#include <uint256.h>
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@
|
||||||
*
|
*
|
||||||
* Serialized format:
|
* Serialized format:
|
||||||
* - VARINT((coinbase ? 1 : 0) | (height << 1))
|
* - VARINT((coinbase ? 1 : 0) | (height << 1))
|
||||||
* - the non-spent CTxOut (via CTxOutCompressor)
|
* - the non-spent CTxOut (via TxOutCompression)
|
||||||
*/
|
*/
|
||||||
class Coin
|
class Coin
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue