Merge pull request #4409
7a056f44
WalletAPI: multisigSignData bug fixed (naughtyfox)
This commit is contained in:
parent
402349760f
commit
e4130e6ae6
@ -200,7 +200,11 @@ std::string PendingTransactionImpl::multisigSignData() {
|
|||||||
throw std::runtime_error("wallet is not multisig");
|
throw std::runtime_error("wallet is not multisig");
|
||||||
}
|
}
|
||||||
|
|
||||||
auto cipher = m_wallet.m_wallet->save_multisig_tx(m_pending_tx);
|
tools::wallet2::multisig_tx_set txSet;
|
||||||
|
txSet.m_ptx = m_pending_tx;
|
||||||
|
txSet.m_signers = m_signers;
|
||||||
|
auto cipher = m_wallet.m_wallet->save_multisig_tx(txSet);
|
||||||
|
|
||||||
return epee::string_tools::buff_to_hex_nodelimer(cipher);
|
return epee::string_tools::buff_to_hex_nodelimer(cipher);
|
||||||
} catch (const std::exception& e) {
|
} catch (const std::exception& e) {
|
||||||
m_status = Status_Error;
|
m_status = Status_Error;
|
||||||
|
Loading…
Reference in New Issue
Block a user