<feed xmlns='http://www.w3.org/2005/Atom'>
<title>monzero-core.git/src/ringct/rctSigs.cpp, branch v0.11.0.0</title>
<subtitle>Monzero core node, command-line wallet, consensus code, and release tooling.
</subtitle>
<id>https://code.monzero.org/monzero-core.git/atom?h=v0.11.0.0</id>
<link rel='self' href='https://code.monzero.org/monzero-core.git/atom?h=v0.11.0.0'/>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/'/>
<updated>2017-02-27T22:28:45Z</updated>
<entry>
<title>ringct: do not require range proof in decodeRct/decodeRctSimple</title>
<updated>2017-02-27T22:28:45Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-02-27T22:03:31Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=da18898f0e64a9bec75e10230038759ccf95205e'/>
<id>urn:sha1:da18898f0e64a9bec75e10230038759ccf95205e</id>
<content type='text'>
These fields aren't used, and they'll actually be pruned in
some cases
</content>
</entry>
<entry>
<title>extract some basic code from libcryptonote_core into libcryptonote_basic</title>
<updated>2017-02-08T13:45:15Z</updated>
<author>
<name>kenshi84</name>
<email>kenshi84@protonmail.ch</email>
</author>
<published>2017-01-26T15:07:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=8027ce0c75f882de0523e668defa0bc3c8564e96'/>
<id>urn:sha1:8027ce0c75f882de0523e668defa0bc3c8564e96</id>
<content type='text'>
</content>
</entry>
<entry>
<title>ringct: reorder a bit to check quicker tests first</title>
<updated>2017-01-21T20:29:22Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-01-21T20:29:22Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=6cc7d261406ad38071065a79f66c4366f65b65ba'/>
<id>urn:sha1:6cc7d261406ad38071065a79f66c4366f65b65ba</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Change logging to easylogging++</title>
<updated>2017-01-16T00:25:46Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-01-01T16:34:23Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=5833d66f6540e7b34e10ddef37c2b67bd501994b'/>
<id>urn:sha1:5833d66f6540e7b34e10ddef37c2b67bd501994b</id>
<content type='text'>
This replaces the epee and data_loggers logging systems with
a single one, and also adds filename:line and explicit severity
levels. Categories may be defined, and logging severity set
by category (or set of categories). epee style 0-4 log level
maps to a sensible severity configuration. Log files now also
rotate when reaching 100 MB.

To select which logs to output, use the MONERO_LOGS environment
variable, with a comma separated list of categories (globs are
supported), with their requested severity level after a colon.
If a log matches more than one such setting, the last one in
the configuration string applies. A few examples:

This one is (mostly) silent, only outputting fatal errors:

MONERO_LOGS=*:FATAL

This one is very verbose:

MONERO_LOGS=*:TRACE

This one is totally silent (logwise):

MONERO_LOGS=""

This one outputs all errors and warnings, except for the
"verify" category, which prints just fatal errors (the verify
category is used for logs about incoming transactions and
blocks, and it is expected that some/many will fail to verify,
hence we don't want the spam):

MONERO_LOGS=*:WARNING,verify:FATAL

Log levels are, in decreasing order of priority:
FATAL, ERROR, WARNING, INFO, DEBUG, TRACE

Subcategories may be added using prefixes and globs. This
example will output net.p2p logs at the TRACE level, but all
other net* logs only at INFO:

MONERO_LOGS=*:ERROR,net*:INFO,net.p2p:TRACE

Logs which are intended for the user (which Monero was using
a lot through epee, but really isn't a nice way to go things)
should use the "global" category. There are a few helper macros
for using this category, eg: MGINFO("this shows up by default")
or MGINFO_RED("this is red"), to try to keep a similar look
and feel for now.

Existing epee log macros still exist, and map to the new log
levels, but since they're used as a "user facing" UI element
as much as a logging system, they often don't map well to log
severities (ie, a log level 0 log may be an error, or may be
something we want the user to see, such as an important info).
In those cases, I tried to use the new macros. In other cases,
I left the existing macros in. When modifying logs, it is
probably best to switch to the new macros with explicit levels.

The --log-level options and set_log commands now also accept
category settings, in addition to the epee style log levels.
</content>
</entry>
<entry>
<title>rct: split rct checks between semantics and other</title>
<updated>2017-01-14T21:17:32Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2017-01-14T13:29:08Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=ba3968f6ce0459f0c0a767e4f54e7cb2c48955d9'/>
<id>urn:sha1:ba3968f6ce0459f0c0a767e4f54e7cb2c48955d9</id>
<content type='text'>
Semantics can be checked early
</content>
</entry>
<entry>
<title>Removed unused functions</title>
<updated>2016-12-19T19:47:26Z</updated>
<author>
<name>Lee Clagett</name>
<email>code@leeclagett.com</email>
</author>
<published>2016-12-19T19:47:26Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e3639f5cc3bad93d8c2556026209e4cac338ada5'/>
<id>urn:sha1:e3639f5cc3bad93d8c2556026209e4cac338ada5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Tx verification failing is not an error</title>
<updated>2016-12-12T23:01:20Z</updated>
<author>
<name>luigi1111</name>
<email>luigi1111w@gmail.com</email>
</author>
<published>2016-12-12T23:01:20Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=9d906159c3ae377cd403831d51c7e400644c0a77'/>
<id>urn:sha1:9d906159c3ae377cd403831d51c7e400644c0a77</id>
<content type='text'>
And rangeProofs are on outputs...
</content>
</entry>
<entry>
<title>Merge pull request #1414</title>
<updated>2016-12-08T21:44:09Z</updated>
<author>
<name>Riccardo Spagni</name>
<email>ric@spagni.net</email>
</author>
<published>2016-12-08T21:44:09Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=e6b05ed95a588f37a0c06802d201b06e7b208773'/>
<id>urn:sha1:e6b05ed95a588f37a0c06802d201b06e7b208773</id>
<content type='text'>
3b005275 ringct: add sc_check calls in MLSAG_Ver for ss and cc (moneromooo-monero)
2f1732a7 ringct: guard against bad data exceptions in worker threads (moneromooo-monero)
</content>
</entry>
<entry>
<title>ringct: add sc_check calls in MLSAG_Ver for ss and cc</title>
<updated>2016-12-07T22:41:21Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-12-07T22:41:21Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=3b00527500b08859a75cf94a78c55656bcc2f99e'/>
<id>urn:sha1:3b00527500b08859a75cf94a78c55656bcc2f99e</id>
<content type='text'>
luigi1111's recommendation
</content>
</entry>
<entry>
<title>ringct: guard against bad data exceptions in worker threads</title>
<updated>2016-12-07T22:09:43Z</updated>
<author>
<name>moneromooo-monero</name>
<email>moneromooo-monero@users.noreply.github.com</email>
</author>
<published>2016-12-07T22:09:43Z</published>
<link rel='alternate' type='text/html' href='https://code.monzero.org/monzero-core.git/commit/?id=2f1732a7e5baf6661ef8d9573754f0388ecba56f'/>
<id>urn:sha1:2f1732a7e5baf6661ef8d9573754f0388ecba56f</id>
<content type='text'>
If purported pubkeys aren't actually valid pubkeys, exceptions
will fly. These will terminate if thrown in a worker thread.
Guard against this.
</content>
</entry>
</feed>
