From 39c7f954d0e2150e0ed826421df94a7a6006ea18 Mon Sep 17 00:00:00 2001 From: Simon Date: Mon, 5 Sep 2016 09:05:22 -0700 Subject: [PATCH] Remove redundant call. --- src/wallet/asyncrpcoperation_sendmany.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.cpp b/src/wallet/asyncrpcoperation_sendmany.cpp index 1016501c..bb145b59 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/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; }