From 301e6885832baa96e4ac75f39bd5727af9865e41 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Tue, 29 Aug 2023 15:51:58 +0800 Subject: [PATCH] 1 --- webapp/services/BlockChainService.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/webapp/services/BlockChainService.php b/webapp/services/BlockChainService.php index c465e4c7..b0cb21bb 100644 --- a/webapp/services/BlockChainService.php +++ b/webapp/services/BlockChainService.php @@ -218,6 +218,12 @@ class BlockChainService { $intPart = substr($val, 0, strlen($val) - $decimals); $floatPart = substr($val, strlen($val) - $decimals); } + /* + error_log(json_encode(array( + 'val' => $val, + 'int_part' => $intPart, + 'float_part' => $floatPart, + )));*/ return true; }