ringct: save 3 bytes on bulletproof size

Found by luigi1111
release-v0.6.1.2
moneromooo-monero 5 years ago
parent f931e16c6e
commit cdc3ccec5f
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -320,7 +320,10 @@ namespace rct {
if (type == RCTTypeBulletproof || type == RCTTypeBulletproof2)
{
uint32_t nbp = bulletproofs.size();
FIELD(nbp)
if (type == RCTTypeBulletproof2)
VARINT_FIELD(nbp)
else
FIELD(nbp)
ar.tag("bp");
ar.begin_array();
if (nbp > outputs)

Loading…
Cancel
Save