Skip to content

Commit 48377eb

Browse files
Merge pull request #2650 from o1-labs/leon/3.0/event-action-limits
[mesa] compat: increases events and actions limits to match mesa values
2 parents c7f60db + c522181 commit 48377eb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/mina/v1/constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// Constants to define the maximum number of segments, events, and actions in a transaction
66
export namespace TransactionLimits {
77
export const MAX_ZKAPP_SEGMENT_PER_TRANSACTION = 16;
8-
export const MAX_ACTION_ELEMENTS = 100 as const;
9-
export const MAX_EVENT_ELEMENTS = 100 as const;
8+
export const MAX_ACTION_ELEMENTS = 1024 as const;
9+
export const MAX_EVENT_ELEMENTS = 1024 as const;
1010
}
1111

1212
export namespace ZkappConstants {

0 commit comments

Comments
 (0)