wallet2: fix secondary partially signed multisig txes

pull/88/head
moneromooo-monero 6 years ago committed by wowario
parent 8990b433aa
commit 02b0bf7997
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -6667,7 +6667,7 @@ void wallet2::transfer_selected_rct(std::vector<cryptonote::tx_destination_entry
THROW_WALLET_EXCEPTION_IF(selected_transfers.size() != sources.size(), error::wallet_internal_error, "mismatched selected_transfers and sources sixes");
for(size_t idx: selected_transfers)
{
cryptonote::tx_source_entry& src = sources[src_idx];
cryptonote::tx_source_entry& src = sources_copy[src_idx];
src.multisig_kLRki = get_multisig_composite_kLRki(idx, multisig_signers[signer_index], used_L, new_used_L);
++src_idx;
}

Loading…
Cancel
Save