Fix bug where call to sign and send a transaction was in wrong scope.

This commit is contained in:
Simon 2016-09-02 08:52:44 -07:00
parent 3fd5a615ac
commit c93d8bdf9c
1 changed files with 3 additions and 4 deletions

View File

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