From 033a4bfe9fdf46c1027edac8538d8d7ce750f0f0 Mon Sep 17 00:00:00 2001 From: pedrobergamini <41773103+pedrobergamini@users.noreply.github.com> Date: Tue, 17 Jun 2025 23:30:48 -0300 Subject: [PATCH] chore: fix slither info warning --- foundry/src/executors/BebopExecutor.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/foundry/src/executors/BebopExecutor.sol b/foundry/src/executors/BebopExecutor.sol index 0295d5b..5387ac8 100644 --- a/foundry/src/executors/BebopExecutor.sol +++ b/foundry/src/executors/BebopExecutor.sol @@ -251,7 +251,7 @@ contract BebopExecutor is IExecutor, IExecutorErrors, RestrictTransferFrom { } // For aggregate orders, calculate total taker amount across all amounts of the 2D array - uint256 totalTakerAmount; + uint256 totalTakerAmount = 0; for (uint256 i = 0; i < order.taker_amounts.length; i++) { for (uint256 j = 0; j < order.taker_amounts[i].length; j++) { totalTakerAmount += order.taker_amounts[i][j];