From 6dc1561a476c3739b89d2fb23336effabb12540c Mon Sep 17 00:00:00 2001 From: Roman Date: Thu, 8 Sep 2022 15:55:33 -0400 Subject: [PATCH] revert --- x/twap/logic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/twap/logic.go b/x/twap/logic.go index 2ef2a53dc14..24423c01141 100644 --- a/x/twap/logic.go +++ b/x/twap/logic.go @@ -240,7 +240,7 @@ func computeArithmeticTwap(ctx sdk.Context, startRecord types.TwapRecord, endRec } computed := types.AccumDiffDivDuration(accumDiff, timeDelta) computed2 := types.AccumDiffDivDuration(accumDiff, timeDelta) - ctx.Logger().Info("computeArithmeticTwap", "accumDiff", accumDiff, "timeDelta", timeDelta, "computed", computed, "computed2", computed2) + ctx.Logger().Info("computeArithmeticTwap", "accumDiff", accumDiff.String(), "timeDelta", timeDelta.Milliseconds(), "computed", computed.String(), "computed2", computed2.String()) return computed, err }