Skip to content

Commit

Permalink
guest name nit
Browse files Browse the repository at this point in the history
  • Loading branch information
hashcashier committed Oct 29, 2024
1 parent 91e1de0 commit a1411fc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions bin/zeth/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use zeth::cli::{Cli, Network};
use zeth::client::{build_journal, RethZethClient, ZethClient};
use zeth::executor::build_executor_env;
use zeth::proof_file_name;
use zeth_guests::{RETH_ELF, RETH_ID};
use zeth_guests::{ZETH_GUESTS_RETH_ELF, ZETH_GUESTS_RETH_ID};

#[tokio::main]
async fn main() -> anyhow::Result<()> {
Expand All @@ -33,7 +33,7 @@ async fn main() -> anyhow::Result<()> {

// select a guest program
let (image_id, elf) = match build_args.network {
Network::Ethereum => (RETH_ID, RETH_ELF),
Network::Ethereum => (ZETH_GUESTS_RETH_ID, ZETH_GUESTS_RETH_ELF),
Network::Optimism => todo!(),
};

Expand Down
24 changes: 12 additions & 12 deletions guests/reth/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion guests/reth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "reth"
name = "zeth-guests-reth"
version = "0.1.0"
edition = "2021"

Expand Down

0 comments on commit a1411fc

Please sign in to comment.