Remove redundant call.

This commit is contained in:
Simon 2016-09-05 09:05:22 -07:00
parent fc4b127ed3
commit 39c7f954d0
1 changed files with 1 additions and 1 deletions

View File

@ -665,7 +665,7 @@ bool AsyncRPCOperation_sendmany::find_utxos(bool fAcceptCoinbase=false) {
// By default we ignore coinbase outputs
bool isCoinbase = out.tx->IsCoinBase();
if (out.tx->IsCoinBase() && fAcceptCoinbase==false) {
if (isCoinbase && fAcceptCoinbase==false) {
continue;
}