Merge pull request #4530

77471e23 blockchain_blackball: fix stray ! (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2018-10-08 22:05:29 +02:00
commit d6dbb6601b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 1 additions and 1 deletions

View File

@ -1233,7 +1233,7 @@ int main(int argc, char* argv[])
std::cout << "\r" << start_idx << "/" << n_txes << " \r" << std::flush;
}
blackballs.push_back(output);
if (!add_spent_output(cur, output_data(txin.amount, absolute[o])))
if (add_spent_output(cur, output_data(txin.amount, absolute[o])))
inc_stat(txn, txin.amount ? "pre-rct-duplicate-rings" : "rct-duplicate-rings");
}
}