From b3a5be69fe9cd8b484c4b5663cf8f9b6b6cdf521 Mon Sep 17 00:00:00 2001 From: kasperpawlowski Date: Sun, 30 Nov 2025 18:10:47 +0000 Subject: [PATCH] fix: edge factory --- src/EdgeFactory/EdgeFactory.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/EdgeFactory/EdgeFactory.sol b/src/EdgeFactory/EdgeFactory.sol index be361be9..e717eb95 100644 --- a/src/EdgeFactory/EdgeFactory.sol +++ b/src/EdgeFactory/EdgeFactory.sol @@ -144,7 +144,7 @@ contract EdgeFactory is IEdgeFactory { list = new address[][](end - start); for (uint256 i; i < end - start; ++i) { - list[i] = deployments[i]; + list[i] = deployments[i + start]; } } }