Skip to content

Commit a86879f

Browse files
committed
reduce limit to 50
1 parent d23496e commit a86879f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

contracts/FlowTransactionSchedulerUtils.cdc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ access(all) contract FlowTransactionSchedulerUtils {
331331
// because some managers on mainnet have already hit the limit and we need to batch them
332332
// to make sure they get cleaned up properly
333333
// This will be removed eventually
334-
if transactionsToRemove.length > 100 {
334+
if transactionsToRemove.length > 50 {
335335
break
336336
}
337337
}

0 commit comments

Comments
 (0)