diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-06-19 22:07:30 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-06-19 22:30:02 +0100 |
commit | 2a19697bd4500c80802bd35c6a6cb1d3d43c38a3 (patch) | |
tree | f38288734c892b1e20ad1e22804eeb9e66ab1c3b /src/wallet/wallet2.cpp | |
parent | Merge pull request #3804 (diff) | |
download | monero-2a19697bd4500c80802bd35c6a6cb1d3d43c38a3.tar.xz |
wallet2: fix double header in unsigned transfer file
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 617fb9a87..67181844b 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -4882,7 +4882,7 @@ bool wallet2::sign_tx(unsigned_tx_set &exported_txs, const std::string &signed_f return false; } - if (!epee::file_io_utils::save_string_to_file(signed_filename, std::string(SIGNED_TX_PREFIX) + ciphertext)) + if (!epee::file_io_utils::save_string_to_file(signed_filename, ciphertext)) { LOG_PRINT_L0("Failed to save file to " << signed_filename); return false; |