Skip to content

Commit

Permalink
fix: amend workflow name
Browse files Browse the repository at this point in the history
  • Loading branch information
andysim3d committed Jan 24, 2025
1 parent 74f19cf commit e376fce
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/compliance.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
- main
pull_request:

name: compliance
name: compliance 07
jobs:
compliance:
runs-on: ubuntu-latest
Expand All @@ -29,7 +29,7 @@ jobs:

- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2'
version: "2.14.2"

- name: Clone Test Executor
uses: actions/checkout@v4
Expand Down
9 changes: 2 additions & 7 deletions .github/workflows/compliance_v06.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
- main
pull_request:

name: compliance
name: compliance 06
jobs:
compliance:
runs-on: ubuntu-latest
Expand All @@ -22,14 +22,9 @@ jobs:
path: rundler
submodules: recursive

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: "v0.3.0"

- uses: KengoTODA/actions-setup-docker-compose@v1
with:
version: '2.14.2'
version: "2.14.2"

- name: Clone Test Executor
uses: actions/checkout@v4
Expand Down
3 changes: 3 additions & 0 deletions crates/contracts/contracts/foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ libs = ['lib']
test = 'test'
cache_path = 'cache'
solc_version = '0.8.26'
optimizer = true
optimizer_runs = 200
evm_version = 'paris'

remappings = [
'forge-std/=lib/forge-std/src',
Expand Down
4 changes: 2 additions & 2 deletions crates/contracts/src/v0_7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ const __ENTRY_POINT_SIMULATIONS_V0_7_DEPLOYED_BYTECODE_HEX: &[u8] = include_byte
"../contracts/out/v0_7/EntryPointSimulations.sol/EntryPointSimulations_deployedBytecode.txt"
);

const __ENTRY_POINT_SIMULATIONS_V0_7_DEPLOYED_BYTECODE: [u8; 16494] = {
const __ENTRY_POINT_SIMULATIONS_V0_7_DEPLOYED_BYTECODE: [u8; 16893] = {
match const_hex::const_decode_to_array(__ENTRY_POINT_SIMULATIONS_V0_7_DEPLOYED_BYTECODE_HEX) {
Ok(a) => a,
Err(_) => panic!("Failed to decode entry point simulations hex"),
Expand All @@ -263,7 +263,7 @@ const __CALL_GAS_ESTIMATION_PROXY_V0_7_DEPLOYED_BYTECODE_HEX: &[u8] = include_by
"../contracts/out/v0_7/CallGasEstimationProxy.sol/CallGasEstimationProxy_deployedBytecode.txt"
);

const __CALL_GAS_ESTIMATION_PROXY_V0_7_DEPLOYED_BYTECODE: [u8; 3421] = {
const __CALL_GAS_ESTIMATION_PROXY_V0_7_DEPLOYED_BYTECODE: [u8; 3558] = {
match const_hex::const_decode_to_array(__CALL_GAS_ESTIMATION_PROXY_V0_7_DEPLOYED_BYTECODE_HEX) {
Ok(a) => a,
Err(_) => panic!("Failed to decode call gas estimation proxy hex"),
Expand Down
2 changes: 1 addition & 1 deletion crates/sim/src/estimation/v0_6.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ impl CallGasEstimatorSpecialization for CallGasEstimatorSpecializationV06 {
///
/// The easiest way to get the updated value is to run this module's tests. The
/// failure will tell you the new value.
const PROXY_TARGET_OFFSET: usize = 159;
const PROXY_TARGET_OFFSET: usize = 163;

// Replaces the address of the proxy target where it appears in the proxy
// bytecode so we don't need the same fixed address every time.
Expand Down
2 changes: 1 addition & 1 deletion crates/sim/src/estimation/v0_7.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ impl CallGasEstimatorSpecialization for CallGasEstimatorSpecializationV07 {
///
/// The easiest way to get the updated value is to run this module's tests. The
/// failure will tell you the new value.
const PROXY_TARGET_OFFSET: usize = 159;
const PROXY_TARGET_OFFSET: usize = 163;

// Replaces the address of the proxy target where it appears in the proxy
// bytecode so we don't need the same fixed address every time.
Expand Down

0 comments on commit e376fce

Please sign in to comment.