mirror of
https://github.com/monero-project/monero.git
synced 2024-12-13 20:06:32 +02:00
ringct: save 3 bytes on bulletproof size
Found by luigi1111
This commit is contained in:
parent
f931e16c6e
commit
cdc3ccec5f
@ -320,7 +320,10 @@ namespace rct {
|
|||||||
if (type == RCTTypeBulletproof || type == RCTTypeBulletproof2)
|
if (type == RCTTypeBulletproof || type == RCTTypeBulletproof2)
|
||||||
{
|
{
|
||||||
uint32_t nbp = bulletproofs.size();
|
uint32_t nbp = bulletproofs.size();
|
||||||
FIELD(nbp)
|
if (type == RCTTypeBulletproof2)
|
||||||
|
VARINT_FIELD(nbp)
|
||||||
|
else
|
||||||
|
FIELD(nbp)
|
||||||
ar.tag("bp");
|
ar.tag("bp");
|
||||||
ar.begin_array();
|
ar.begin_array();
|
||||||
if (nbp > outputs)
|
if (nbp > outputs)
|
||||||
|
Loading…
Reference in New Issue
Block a user