MCPcopy Create free account
hub / github.com/LUX-Core/lux / IsDenominatedAmount

Method IsDenominatedAmount

src/wallet.cpp:1515–1521  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1513
1514
1515bool CWallet::IsDenominatedAmount(int64_t nInputAmount) const
1516{
1517 for (int64_t d : darkSendDenominations)
1518 if (nInputAmount == d)
1519 return true;
1520 return false;
1521}
1522
1523bool CWallet::IsChange(const CTxOut& txout) const
1524{

Callers 3

GetDenominatedCreditMethod · 0.80
GetInputDarksendRoundsFunction · 0.80
decomposeTransactionMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected