#Bitcoin is limited, but how?
Validate and check it here:
————————————————————————-
/** The amount of satoshis in one BTC. */
static constexpr CAmount COIN = 100000000;
static constexpr CAmount MAX_MONEY = 21000000 * COIN;
—————————————————————————
Source code:
https://github.com/bitcoin/bitcoin/blob/master/src/consensus/amount.h
Happy reading!