Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: lower optimizer runs #1117

Merged
merged 2 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
]
gas_limit = 9223372036854775807
optimizer = true
optimizer_runs = 1000
optimizer_runs = 800
out = "out"
script = "script"
sender = "0x1804c8AB1F12E6bbf3894d4083f33e07309d1f38"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@sablier/lockup",
"description": "Core smart contracts of the Lockup token distribution protocol",
"license": "BUSL-1.1",
"version": "1.2.0",
"version": "2.0.0",
"author": {
"name": "Sablier Labs Ltd",
"url": "https://sablier.com"
Expand Down
2 changes: 1 addition & 1 deletion tests/utils/BaseScript.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ contract BaseScript_Test is StdAssertions {

function test_ConstructCreate2Salt() public view {
string memory chainId = block.chainid.toString();
string memory version = "1.2.0";
string memory version = "2.0.0";
string memory salt = string.concat("ChainID ", chainId, ", Version ", version);

bytes32 actualSalt = baseScript.constructCreate2Salt();
Expand Down
Loading