set toHex() params $twos_compliment to false

This commit is contained in:
Dan 2018-04-09 18:47:41 +08:00 committed by GitHub
parent 00817ee6b9
commit f874aea69c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ class IntegerFormatter implements IFormatter
$digit = intval($arguments[1]);
}
$bn = Utils::toBn($value);
$bnHex = $bn->toHex(true);
$bnHex = $bn->toHex();
$padded = mb_substr($bnHex, 0, 1);
if ($padded !== 'f') {