From 970e8c5f90e7c30e1fb2bd77d0c704c17d6f4aa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20Uhl=C3=AD=C5=99?= Date: Thu, 7 Sep 2023 12:15:15 +0200 Subject: [PATCH] chore(logging): decimal stint values --- codex/node.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codex/node.nim b/codex/node.nim index d7f799c2..0f9f8c5e 100644 --- a/codex/node.nim +++ b/codex/node.nim @@ -254,7 +254,7 @@ proc requestStorage*( ## - Run the PoR setup on the erasure dataset ## - Call into the marketplace and purchasing contracts ## - trace "Received a request for storage!", cid, duration, nodes, tolerance, reward, proofProbability, collateral, expiry + trace "Received a request for storage!", cid, duration = duration.toString, nodes, tolerance, reward = reward.toString, proofProbability = proofProbability.toString, collateral = collateral.toString, expiry = (expiry |? 0.u256).toString without contracts =? self.contracts.client: trace "Purchasing not available"