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,13 +589,12 @@ bool AsyncRPCOperation_sendmany::main_impl() {
obj = perform_joinsplit(info, witnesses, jsAnchor); obj = perform_joinsplit(info, witnesses, jsAnchor);
} }
}
sign_send_raw_transaction(obj); sign_send_raw_transaction(obj);
return true; return true;
} }
}
/** /**
* Sign and send a raw transaction. * Sign and send a raw transaction.