diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-11-06 21:31:14 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-11-06 21:31:14 +0200 |
commit | 299d75b20979808dc10f0338eb49503ebbaf3220 (patch) | |
tree | 3eef77b5ba582fa0b3749cd067d7535daffa0c2f /src/rpc | |
parent | Merge pull request #4733 (diff) | |
parent | rpc: adjust ring size error message now that too high is also possible (diff) | |
download | monero-299d75b20979808dc10f0338eb49503ebbaf3220.tar.xz |
Merge pull request #4735
73e504c1 rpc: adjust ring size error message now that too high is also possible (moneromooo-monero)
a5ca7f4f core: fix unmixable special case allowing ring size below 11 (moneromooo-monero)
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index 574f6c126..6c1972a3f 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -701,7 +701,7 @@ namespace cryptonote res.status = "Failed"; res.reason = ""; if ((res.low_mixin = tvc.m_low_mixin)) - add_reason(res.reason, "ring size too small"); + add_reason(res.reason, "bad ring size"); if ((res.double_spend = tvc.m_double_spend)) add_reason(res.reason, "double spend"); if ((res.invalid_input = tvc.m_invalid_input)) |