diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-20 19:00:59 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-12-20 19:02:51 +0000 |
commit | c31e42e2bb6b011e48bafe5ef1927994d4f69686 (patch) | |
tree | 30a1d0f34105e4abe6a8be06a0d978346f79ed0d /src/simplewallet | |
parent | Merge pull request #1475 (diff) | |
download | monero-c31e42e2bb6b011e48bafe5ef1927994d4f69686.tar.xz |
simplewallet: bump output file format version
The serialization format changed, and while there is code
to load the older serialization format, an older monerod
will not be able to load a file saved by a new monerod,
even though both share the same version. This is not good,
and we prefer a version bump.
Diffstat (limited to 'src/simplewallet')
-rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 1f6afe2db..d03f3e7be 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -72,7 +72,7 @@ typedef cryptonote::simple_wallet sw; #define DEFAULT_MIX 4 #define KEY_IMAGE_EXPORT_FILE_MAGIC "Monero key image export\002" -#define OUTPUT_EXPORT_FILE_MAGIC "Monero output export\002" +#define OUTPUT_EXPORT_FILE_MAGIC "Monero output export\003" #define LOCK_IDLE_SCOPE() \ bool auto_refresh_enabled = m_auto_refresh_enabled.load(std::memory_order_relaxed); \ |