From c93d8bdf9c257db29c596bf2a55706cbf8895193 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 2 Sep 2016 08:52:44 -0700 Subject: [PATCH] Fix bug where call to sign and send a transaction was in wrong scope. --- src/wallet/asyncrpcoperation_sendmany.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/wallet/asyncrpcoperation_sendmany.cpp b/src/wallet/asyncrpcoperation_sendmany.cpp index 64bf0d30..1aa40842 100644 --- a/src/wallet/asyncrpcoperation_sendmany.cpp +++ b/src/wallet/asyncrpcoperation_sendmany.cpp @@ -589,11 +589,10 @@ bool AsyncRPCOperation_sendmany::main_impl() { obj = perform_joinsplit(info, witnesses, jsAnchor); } - - sign_send_raw_transaction(obj); - return true; } - + + sign_send_raw_transaction(obj); + return true; }