aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-09-08 23:11:16 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-09-08 23:12:06 +0000
commitdf0e7c2feb65c83fdaf2262cb653be568fc8b58c (patch)
tree9360089da6c74f67ec2f2073c7792e731a2200a1 /src
parentMerge pull request #4290 (diff)
downloadmonero-df0e7c2feb65c83fdaf2262cb653be568fc8b58c.tar.xz
wallet2: fix secondary partially signed multisig txes
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index a2e36706e..ac4f67b74 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -7296,7 +7296,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;
}