diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-07-03 15:19:24 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-07-03 15:19:24 +0200 |
commit | 97f5a130d6e1cd1c6ad7e787c9d0501778994600 (patch) | |
tree | bd8f023b0119529ed3653a1089862f26a5ee5b04 /src | |
parent | Merge pull request #4012 (diff) | |
parent | wallet2: fix double header in unsigned transfer file (diff) | |
download | monero-97f5a130d6e1cd1c6ad7e787c9d0501778994600.tar.xz |
Merge pull request #4028
2a19697b wallet2: fix double header in unsigned transfer file (moneromooo-monero)
Diffstat (limited to 'src')
-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 30eb583fe..9255e1912 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -5048,7 +5048,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; |