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

fix(client): Remove executor shadow in FCU retry #750

Merged
merged 1 commit into from
Oct 29, 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
3 changes: 1 addition & 2 deletions bin/client/src/l1/driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,7 @@ where
});

// Retry the execution.
let mut executor =
self.new_executor(cfg, provider, hinter, handle_register);
executor = self.new_executor(cfg, provider, hinter, handle_register);
match executor.execute_payload(attributes) {
Ok(Header { number, .. }) => *number,
Err(e) => {
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test-online:
just test "-E 'test(test_online)'"

# Run action tests for the client program on the native target
action-tests test_name='Test_ProgramAction':
action-tests test_name='Test_ProgramAction' *args='':
#!/bin/bash

just monorepo
Expand All @@ -42,7 +42,7 @@ action-tests test_name='Test_ProgramAction':
export KONA_CLIENT_PATH="{{justfile_directory()}}/target/release-client-lto/kona"

cd monorepo/op-e2e/actions/proofs && \
go test -run "{{test_name}}" -v -count=1 ./...
go test -run "{{test_name}}" {{args}} -count=1 ./...

# Clean the action tests directory
clean-actions:
Expand Down