1
0
Fork 0
forked from lthn/blockchain

gcc compilation fixup

This commit is contained in:
sowle 2019-04-30 19:36:53 +02:00
parent 14c9f82e96
commit 4987bfe6c5

View file

@ -64,7 +64,8 @@ void transfer_multisig(tools::wallet2& w,
ctp.unlock_time = unlock_time;
w.prepare_transaction(ctp, ftp, tx);
w.finalize_transaction(ftp, tx, crypto::secret_key(), false);
crypto::secret_key sk = AUTO_VAL_INIT(sk);
w.finalize_transaction(ftp, tx, sk, false);
// sign ms input with all other non-wallet keys
auto it = w.get_multisig_transfers().find(multisig_id);