Merge pull request #5894

c89f7ef wallet2_api: fix load unsigned tx from file error propagation (xiphon)
release-v0.7.1.0
luigi1111 5 years ago
commit e23b9847d0
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1123,6 +1123,10 @@ UnsignedTransaction *WalletImpl::loadUnsignedTx(const std::string &unsigned_file
UnsignedTransactionImpl * transaction = new UnsignedTransactionImpl(*this);
if (!m_wallet->load_unsigned_tx(unsigned_filename, transaction->m_unsigned_tx_set)){
setStatusError(tr("Failed to load unsigned transactions"));
transaction->m_status = UnsignedTransaction::Status::Status_Error;
transaction->m_errorString = errorString();
return transaction;
}
// Check tx data and construct confirmation message

Loading…
Cancel
Save