From 2a2cf03764056a9a6bd8a4497aafcb77fd0b4642 Mon Sep 17 00:00:00 2001 From: jeffro256 Date: Wed, 21 Jun 2023 22:08:22 +0200 Subject: [PATCH] blockchain_db: add clarification to get_block_already_generated_coins --- src/blockchain_db/blockchain_db.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockchain_db/blockchain_db.h b/src/blockchain_db/blockchain_db.h index 835d6dcad..b38ec9e05 100644 --- a/src/blockchain_db/blockchain_db.h +++ b/src/blockchain_db/blockchain_db.h @@ -1053,7 +1053,7 @@ public: * @brief fetch a block's already generated coins * * The subclass should return the total coins generated as of the block - * with the given height. + * with the given height, capped to a maximum value of MONEY_SUPPLY. * * If the block does not exist, the subclass should throw BLOCK_DNE *