aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2018-07-03 15:19:24 +0200
committerRiccardo Spagni <ric@spagni.net>2018-07-03 15:19:24 +0200
commit97f5a130d6e1cd1c6ad7e787c9d0501778994600 (patch)
treebd8f023b0119529ed3653a1089862f26a5ee5b04 /src/wallet
parentMerge pull request #4012 (diff)
parentwallet2: fix double header in unsigned transfer file (diff)
downloadmonero-97f5a130d6e1cd1c6ad7e787c9d0501778994600.tar.xz
Merge pull request #4028
2a19697b wallet2: fix double header in unsigned transfer file (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp2
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;