Skip to content

Commit

Permalink
Merge pull request #68 from ethereum-optimism/rf/chore/re-export-kona…
Browse files Browse the repository at this point in the history
…-derive

feat(op-test-vectors): Re-export Kona Derive
  • Loading branch information
0xKitsune committed Aug 20, 2024
2 parents a8c1e22 + 83ad212 commit afca8f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 1 addition & 4 deletions bin/opdn/src/cmd/from_l2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,7 @@ impl FromL2 {
.payload_by_number(i)
.await
.map_err(|e| eyre!(e))?;
ref_payloads.insert(
i,
crate::cmd::util::to_payload_attributes(l2_payload),
);
ref_payloads.insert(i, crate::cmd::util::to_payload_attributes(l2_payload));
}

// Run the pipeline
Expand Down
4 changes: 4 additions & 0 deletions crates/op-test-vectors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#![deny(unused_must_use, rust_2018_idioms)]
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]

// Re-export `kona-derive` since its types are used in derivation fixtures
// and the crate is pinned to a specific version.
pub use kona_derive;

pub mod derivation;

pub mod execution;

0 comments on commit afca8f9

Please sign in to comment.