Skip to content

Commit

Permalink
feat(blockifier): add comprehensive state diff versioned constant
Browse files Browse the repository at this point in the history
  • Loading branch information
yoavGrs committed Dec 3, 2024
1 parent ef4d972 commit a1a2fc7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"segment_arena_cells": true,
"disable_cairo0_redeclaration": false,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"segment_arena_cells": true,
"disable_cairo0_redeclaration": false,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"segment_arena_cells": true,
"disable_cairo0_redeclaration": false,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"disable_cairo0_redeclaration": true,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"disable_cairo0_redeclaration": true,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"disable_cairo0_redeclaration": true,
"enable_stateful_compression": false,
"comprehensive_state_diff": false,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
},
"disable_cairo0_redeclaration": true,
"enable_stateful_compression": true,
"comprehensive_state_diff": true,
"allocation_cost": {
"blob_cost": {
"l1_gas": 0,
Expand Down
1 change: 1 addition & 0 deletions crates/blockifier/src/versioned_constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,7 @@ pub struct VersionedConstants {
// Transactions settings.
pub disable_cairo0_redeclaration: bool,
pub enable_stateful_compression: bool,
pub comprehensive_state_diff: bool,
pub ignore_inner_event_resources: bool,

// Compiler settings.
Expand Down

0 comments on commit a1a2fc7

Please sign in to comment.