diff --git a/.github/workflows/trusted_sync_docker.yaml b/.github/workflows/trusted_sync_docker.yaml index 70ed009c..4e3fff33 100644 --- a/.github/workflows/trusted_sync_docker.yaml +++ b/.github/workflows/trusted_sync_docker.yaml @@ -39,5 +39,5 @@ jobs: file: examples/trusted-sync/Dockerfile context: . push: true - tags: ${{ steps.meta.outputs.tags }},ghcr.io/ethereum-optimism/kona/trusted-sync:${{ github.event.inputs.customTag }} + tags: ${{ steps.meta.outputs.tags }},ghcr.io/anton-rs/kona/trusted-sync:${{ github.event.inputs.customTag }} labels: ${{ steps.meta.outputs.labels }} diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 53753c54..f1c9cc08 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -40,4 +40,4 @@ serde_json.workspace = true [features] default = ["serde"] serde = ["dep:serde", "superchain-primitives/serde"] -online = ["dep:c-kzg", "dep:sha2", "dep:revm", "dep:tracing"] +online = ["dep:c-kzg", "dep:sha2", "dep:revm", "dep:tracing", "revm/default"] diff --git a/crates/primitives/src/sidecar.rs b/crates/primitives/src/sidecar.rs index 069f5b37..aea287a4 100644 --- a/crates/primitives/src/sidecar.rs +++ b/crates/primitives/src/sidecar.rs @@ -11,7 +11,7 @@ use alloy_primitives::B256; #[cfg(feature = "online")] use c_kzg::{Bytes48, KzgProof}; #[cfg(feature = "online")] -use revm::primitives::kzg::EnvKzgSettings; +use revm::primitives::EnvKzgSettings; #[cfg(feature = "online")] use sha2::{Digest, Sha256}; #[cfg(feature = "online")]