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 | |
| parent | c7f9d0d971e7b6da6f803a2f3486b935f575d7c3 (diff) | |
| download | monzero-core-c31e42e2bb6b011e48bafe5ef1927994d4f69686.tar.gz monzero-core-c31e42e2bb6b011e48bafe5ef1927994d4f69686.tar.xz monzero-core-c31e42e2bb6b011e48bafe5ef1927994d4f69686.zip | |
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.
| -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); \ |
