Skip to content

Commit

Permalink
fix(examples): Revm Features (#482)
Browse files Browse the repository at this point in the history
* fix: revm features

* fix: trusted-sync docker remote
  • Loading branch information
refcell authored Sep 4, 2024
1 parent 8e9c665 commit 858d578
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/trusted_sync_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion crates/primitives/src/sidecar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
Expand Down

0 comments on commit 858d578

Please sign in to comment.