Home
last modified time | relevance | path

Searched defs:MoneyRange (Results 1 – 14 of 14) sorted by relevance

/dports/net-p2p/bitcoin/bitcoin-22.0/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/bitcoin-utils/bitcoin-22.0/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/bitcoin-daemon/bitcoin-22.0/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/litecoin-daemon/litecoin-0.18.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/litecoin/litecoin-0.18.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/litecoin-utils/litecoin-0.18.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/namecoin-utils/namecoin-core-nc0.21.0.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/namecoin/namecoin-core-nc0.21.0.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/namecoin-daemon/namecoin-core-nc0.21.0.1/src/
H A Damount.h26 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/
H A Damount.h19 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/zetacoin-utils/zetacoin-0.13.2.1/src/
H A Damount.h32 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/zetacoin/zetacoin-0.13.2.1/src/
H A Damount.h32 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/net-p2p/zetacoin-daemon/zetacoin-0.13.2.1/src/
H A Damount.h32 inline bool MoneyRange(const CAmount& nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); } in MoneyRange() function
/dports/finance/py-python-bitcoinlib/python-bitcoinlib-0.11.0/bitcoin/core/
H A D__init__.py35 def MoneyRange(nValue, params=None): function