chore: fix slither info warning

This commit is contained in:
pedrobergamini
2025-06-17 23:30:48 -03:00
parent 638ab73ea8
commit 033a4bfe9f

View File

@@ -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];