mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
Merge pull request #4602
6fd59ee
script.h: set_vch() should shift a >32 bit value (Jeff Garzik)
This commit is contained in:
commit
6278bd57c6
@ -166,7 +166,7 @@ private:
|
|||||||
// If the input vector's most significant byte is 0x80, remove it from
|
// If the input vector's most significant byte is 0x80, remove it from
|
||||||
// the result's msb and return a negative.
|
// the result's msb and return a negative.
|
||||||
if (vch.back() & 0x80)
|
if (vch.back() & 0x80)
|
||||||
return -(result & ~(0x80 << (8 * (vch.size() - 1))));
|
return -(result & ~(0x80ULL << (8 * (vch.size() - 1))));
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user