aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-10-27 11:15:32 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-10-27 11:16:28 +0000
commit73e504c1391a1ce130e225a8440558ca298586a2 (patch)
treedb8a48ddf868e9139c5d8a4c3642141bc905e042 /src/rpc
parentcore: fix unmixable special case allowing ring size below 11 (diff)
downloadmonero-73e504c1391a1ce130e225a8440558ca298586a2.tar.xz
rpc: adjust ring size error message now that too high is also possible
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/core_rpc_server.cpp2
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))