aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core/cryptonote_tx_utils.cpp
diff options
context:
space:
mode:
authorRiccardo Spagni <ric@spagni.net>2017-08-07 22:53:15 +0200
committerRiccardo Spagni <ric@spagni.net>2017-08-07 22:53:15 +0200
commitbff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b (patch)
tree55f202725b55207eef21a57d85e3073a4797495e /src/cryptonote_core/cryptonote_tx_utils.cpp
parent14f479bb9cc47baf95df41026e54cef12014eaad (diff)
parent61770ec2dab6c959cf5c320eff49f3f4c01a30af (diff)
downloadmonzero-core-bff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b.tar.gz
monzero-core-bff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b.tar.xz
monzero-core-bff9fb9c8b03d4b7191cdac48d3fe9e644a1ec4b.zip
Merge pull request #2231
61770ec2 change mixin to ring size in user visible places (moneromooo-monero)
Diffstat (limited to 'src/cryptonote_core/cryptonote_tx_utils.cpp')
-rw-r--r--src/cryptonote_core/cryptonote_tx_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_tx_utils.cpp b/src/cryptonote_core/cryptonote_tx_utils.cpp
index 30e1431be..94f069827 100644
--- a/src/cryptonote_core/cryptonote_tx_utils.cpp
+++ b/src/cryptonote_core/cryptonote_tx_utils.cpp
@@ -371,7 +371,7 @@ namespace cryptonote
// enforce same mixin for all outputs
for (size_t i = 1; i < sources.size(); ++i) {
if (n_total_outs != sources[i].outputs.size()) {
- LOG_ERROR("Non-simple ringct transaction has varying mixin");
+ LOG_ERROR("Non-simple ringct transaction has varying ring size");
return false;
}
}