diff options
author | luigi1111 <luigi1111w@gmail.com> | 2023-08-17 10:19:26 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2023-08-17 10:19:26 -0500 |
commit | fc84506a969a31c2db299bbf1f1ef53764b74a56 (patch) | |
tree | 487a0e250d6ae9c2fb38fdd1bbfa1469665751f9 | |
parent | Merge pull request #8890 (diff) | |
parent | blockchain_db: add clarification to get_block_already_generated_coins (diff) | |
download | monero-fc84506a969a31c2db299bbf1f1ef53764b74a56.tar.xz |
Merge pull request #8913
2a2cf03 blockchain_db: add clarification to get_block_already_generated_coins (jeffro256)
-rw-r--r-- | src/blockchain_db/blockchain_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 * |