aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-07-12 22:35:49 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-08-28 21:29:36 +0100
commit414b424d32684fcf2a560770bf3f87937c8b90bc (patch)
tree5b4bc0a2dbc185885d551017b865d8531418796d
parenttests: add tests for wallet output selection (diff)
downloadmonero-414b424d32684fcf2a560770bf3f87937c8b90bc.tar.xz
core: always use the new simple rct variant
-rw-r--r--src/cryptonote_core/cryptonote_format_utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp
index 5f8e4024f..e0d8d9d08 100644
--- a/src/cryptonote_core/cryptonote_format_utils.cpp
+++ b/src/cryptonote_core/cryptonote_format_utils.cpp
@@ -633,7 +633,7 @@ namespace cryptonote
size_t n_total_outs = sources[0].outputs.size(); // only for non-simple rct
BOOST_FOREACH(const tx_source_entry& src_entr, sources)
all_rct_inputs &= !(src_entr.mask == rct::identity());
- bool use_simple_rct = all_rct_inputs;
+ bool use_simple_rct = true; //all_rct_inputs;
if (!use_simple_rct)
{