Remove redundant pwallet nullptr check

This commit is contained in:
Matt Corallo 2017-10-01 00:23:02 -04:00
parent c4784b5065
commit 89f03120a0
1 changed files with 0 additions and 1 deletions

View File

@ -2895,7 +2895,6 @@ UniValue listunspent(const JSONRPCRequest& request)
UniValue results(UniValue::VARR);
std::vector<COutput> vecOutputs;
assert(pwallet != nullptr);
LOCK2(cs_main, pwallet->cs_wallet);
pwallet->AvailableCoins(vecOutputs, !include_unsafe, nullptr, nMinimumAmount, nMaximumAmount, nMinimumSumAmount, nMaximumCount, nMinDepth, nMaxDepth);