mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-12-23 13:47:47 +00:00
rctTypes: fix incorrect serialization
This commit is contained in:
parent
11dbfbc5b3
commit
67a56a9f8b
1 changed files with 2 additions and 2 deletions
|
@ -313,10 +313,10 @@ namespace rct {
|
||||||
return false;
|
return false;
|
||||||
if (type == RCTTypeBulletproof)
|
if (type == RCTTypeBulletproof)
|
||||||
{
|
{
|
||||||
ar.tag("bp");
|
|
||||||
ar.begin_array();
|
|
||||||
uint32_t nbp = bulletproofs.size();
|
uint32_t nbp = bulletproofs.size();
|
||||||
FIELD(nbp)
|
FIELD(nbp)
|
||||||
|
ar.tag("bp");
|
||||||
|
ar.begin_array();
|
||||||
if (nbp > outputs)
|
if (nbp > outputs)
|
||||||
return false;
|
return false;
|
||||||
PREPARE_CUSTOM_VECTOR_SERIALIZATION(nbp, bulletproofs);
|
PREPARE_CUSTOM_VECTOR_SERIALIZATION(nbp, bulletproofs);
|
||||||
|
|
Loading…
Reference in a new issue