Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn committed Sep 8, 2022
1 parent 5072907 commit 6dc1561
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/twap/logic.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit 6dc1561

Please sign in to comment.