diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-27 11:15:32 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-27 11:16:28 +0000 |
commit | 73e504c1391a1ce130e225a8440558ca298586a2 (patch) | |
tree | db8a48ddf868e9139c5d8a4c3642141bc905e042 /src | |
parent | core: fix unmixable special case allowing ring size below 11 (diff) | |
download | monero-73e504c1391a1ce130e225a8440558ca298586a2.tar.xz |
rpc: adjust ring size error message now that too high is also possible
Diffstat (limited to 'src')
-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 aa9d3d64b..1492fc80b 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -700,7 +700,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)) |