hlynx

Results 1 issues of hlynx

/src/BitcoinLib.php [1011] ``` public static function toBTC($satoshi) { return bcdiv((int)(string)$satoshi, 100000000, 8); } ``` Looks like it will silently fail on type overflow with 32-bit integer. bcdiv works with strings....