mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
fix macos operator error
This commit is contained in:
parent
93b6af8a66
commit
ff6883710b
1 changed files with 2 additions and 2 deletions
|
@ -342,7 +342,7 @@ namespace boost
|
||||||
if (x.rangeSigs.empty())
|
if (x.rangeSigs.empty())
|
||||||
{
|
{
|
||||||
a & x.bulletproofs;
|
a & x.bulletproofs;
|
||||||
if (ver >= 2)
|
if (ver >= 2u)
|
||||||
a & x.bulletproofs_plus;
|
a & x.bulletproofs_plus;
|
||||||
}
|
}
|
||||||
a & x.MGs;
|
a & x.MGs;
|
||||||
|
@ -372,7 +372,7 @@ namespace boost
|
||||||
if (x.p.rangeSigs.empty())
|
if (x.p.rangeSigs.empty())
|
||||||
{
|
{
|
||||||
a & x.p.bulletproofs;
|
a & x.p.bulletproofs;
|
||||||
if (ver >= 2)
|
if (ver >= 2u)
|
||||||
a & x.p.bulletproofs_plus;
|
a & x.p.bulletproofs_plus;
|
||||||
}
|
}
|
||||||
a & x.p.MGs;
|
a & x.p.MGs;
|
||||||
|
|
Loading…
Reference in a new issue