Skip to content

Commit

Permalink
Fixed bug with event size
Browse files Browse the repository at this point in the history
  • Loading branch information
BlobMaster41 committed Jul 3, 2024
1 parent 3f62e0b commit aef5150
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "@btc-vision/bsi-binary",
"version": "1.0.25",
"version": "1.0.26",
"author": "BlobMaster41",
"description": "OPNet official buffer serialization and deserialization library",
"main": "build/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/buffer/types/math.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ export type SelectorsMap = DeterministicMap<string, Selector>;

export type MethodMap = DeterministicSet<Selector>;

export const MAX_EVENT_DATA_SIZE: number = 256; // 256 bytes max
export const MAX_EVENT_DATA_SIZE: number = 352; // 352 bytes max
export const MAX_EVENTS: number = 8; // 8 events max per transactions.

0 comments on commit aef5150

Please sign in to comment.