Merge #480: remove redundant value validity check

a9dcc1d remove redundant value validity check (Gregory Sanders)

Pull request description:

  This condition is already checked two conditionals above.

Tree-SHA512: b8ba752877c081e4f5a7e796ff6ca065ddf7b644089eb38033c17a17ca2da8243833fbfe2e669a427f90a6c21c8de022c8db237990e088efaf218b9775d75222
This commit is contained in:
Gregory Sanders 2019-03-06 09:11:38 -05:00
commit d954b5e43a
No known key found for this signature in database
GPG key ID: F3F68E2D86A48FDB

View file

@ -883,10 +883,6 @@ bool VerifyAmounts(const CCoinsViewCache& cache, const CTransaction& tx, std::ve
p++;
}
if (!issuance.nAmount.IsValid()) {
return false;
}
// Process issuance of reissuance tokens
if (!issuance.nInflationKeys.IsValid()) {