diff --git a/src/ringct/rctTypes.h b/src/ringct/rctTypes.h index e261bbdc8..0a4dad1a0 100644 --- a/src/ringct/rctTypes.h +++ b/src/ringct/rctTypes.h @@ -319,7 +319,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)