Browse Source

Remove redundant call.

pull/145/head
Simon 8 years ago
parent
commit
39c7f954d0
  1. 2
      src/wallet/asyncrpcoperation_sendmany.cpp

2
src/wallet/asyncrpcoperation_sendmany.cpp

@ -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;
}

Loading…
Cancel
Save