diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-07 22:53:15 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-07 22:53:15 +0200 |
commit | bff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b (patch) | |
tree | 55f202725b55207eef21a57d85e3073a4797495e /src/rpc | |
parent | Merge pull request #2262 (diff) | |
parent | change mixin to ring size in user visible places (diff) | |
download | monero-bff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b.tar.xz |
Merge pull request #2231
61770ec2 change mixin to ring size in user visible places (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 877256d16..a5de36118 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -630,7 +630,7 @@ namespace cryptonote } res.status = "Failed"; if ((res.low_mixin = tvc.m_low_mixin)) - res.reason = "mixin too low"; + res.reason = "ring size too small"; if ((res.double_spend = tvc.m_double_spend)) res.reason = "double spend"; if ((res.invalid_input = tvc.m_invalid_input)) |