diff options
| author | kenshi84 <kenshi84@protonmail.ch> | 2017-01-18 16:11:18 +0900 |
|---|---|---|
| committer | kenshi84 <kenshi84@protonmail.ch> | 2017-01-18 16:11:18 +0900 |
| commit | 78d560a933199dd8b88769fb1e7c166a5f9aa96c (patch) | |
| tree | f16e5ba61d30d060e94d484948bc4063fb9d776b /src/simplewallet/simplewallet.cpp | |
| parent | 71ac698b78acd3719d572a881c377db62c15c62f (diff) | |
| download | monzero-core-78d560a933199dd8b88769fb1e7c166a5f9aa96c.tar.gz monzero-core-78d560a933199dd8b88769fb1e7c166a5f9aa96c.tar.xz monzero-core-78d560a933199dd8b88769fb1e7c166a5f9aa96c.zip | |
simplewallet: use MAKE_CORE_RPC_VERSION(1,4) instead of 0x10004
Diffstat (limited to 'src/simplewallet/simplewallet.cpp')
| -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 68781dd73..bbdf6a4a7 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1958,7 +1958,7 @@ bool simple_wallet::print_ring_members(const std::vector<tools::wallet2::pending return false; } // available for RPC version 1.4 or higher - if (version < 0x10004) + if (version < MAKE_CORE_RPC_VERSION(1, 4)) return true; std::string err; uint64_t blockchain_height = get_daemon_blockchain_height(err); |
