From 6ab7efa96fbd88b63d7a16164e05fa481844b65e Mon Sep 17 00:00:00 2001 From: moveyield Date: Sat, 14 Feb 2026 16:34:50 +0800 Subject: [PATCH] chore: fix typo in loadtest/uniswapv3/pool.go Signed-off-by: moveyield --- loadtest/uniswapv3/pool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loadtest/uniswapv3/pool.go b/loadtest/uniswapv3/pool.go index 0b07a0e09..444df15a5 100644 --- a/loadtest/uniswapv3/pool.go +++ b/loadtest/uniswapv3/pool.go @@ -155,7 +155,7 @@ func createPool(ctx context.Context, c *ethclient.Client, tops *bind.TransactOpt return contract, nil } -// computeSqrtPriceX96 calcules the square root of the price ratio of two reserves in a UniswapV3 pool. +// computeSqrtPriceX96 calculates the square root of the price ratio of two reserves in a UniswapV3 pool. // https://uniswapv3book.com/docs/milestone_1/calculating-liquidity/#price-range-calculation func computeSqrtPriceX96(reserveA, reserveB *big.Int) *big.Int { sqrtReserveA := new(big.Int).Sqrt(reserveA)