Skip to content

Commit 206489c

Browse files
Update sequencer's and starknet replay's ref in starknet-blocks workflow and fix cmp_script (#1338)
* ignore cairo_native flag in cmp_script * update starknet-blocks workflow
1 parent 3358505 commit 206489c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/starknet-blocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
repository: lambdaclass/starknet-replay
3434
path: starknet-replay
35-
ref: 95c7e85f65acbf536462ffb538b866ddafb7ce39
35+
ref: 208af485470515f8a1e826384f3e94842a65c5b0
3636
# We need native to use the linux deps ci action
3737
- name: Checkout Native
3838
uses: actions/checkout@v4
@@ -43,7 +43,7 @@ jobs:
4343
with:
4444
repository: lambdaclass/sequencer
4545
path: sequencer
46-
ref: c12c6a72f2375413fc5ba04e50af87ef21096784
46+
ref: 0f69d1a56b949eccced10e3303109eb82ee92ec8
4747
- name: Cache RPC Calls
4848
uses: actions/[email protected]
4949
with:

scripts/cmp_state_dumps.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ def compare(vm_dump_path: str):
4545
return ("MISS", block, tx)
4646

4747
native_dump = re.sub(r".*reverted.*", "", native_dump, count=1)
48+
native_dump = re.sub(r".*cairo_native.*", "", native_dump)
4849
vm_dump = re.sub(r".*reverted.*", "", vm_dump, count=1)
50+
vm_dump = re.sub(r".*cairo_native.*", "", vm_dump)
4951

5052
if native_dump == vm_dump:
5153
return ("MATCH", block, tx, vm_dump_path, native_dump_path)

0 commit comments

Comments
 (0)