Skip to content

Commit

Permalink
fix(vm): Expose additional types and traits (#563)
Browse files Browse the repository at this point in the history
## What ❔
Add more pubs for previous vm

## Why ❔
For updating era testnode we need to expose some additional data

## Checklist

<!-- Check your PR fulfills the following items. -->
<!-- For draft PRs check the boxes as you complete them. -->

- [ ] PR title corresponds to the body of PR (we generate changelog
entries from PRs).
- [ ] Tests for the changes have been added / updated.
- [ ] Documentation comments have been added / updated.
- [ ] Code has been formatted via `zk fmt` and `zk lint`.

---------

Signed-off-by: Danil <deniallugo@gmail.com>
  • Loading branch information
Deniallugo committed Nov 29, 2023
1 parent beac0a8 commit bd268ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions core/lib/multivm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ pub use versions::vm_m5;
pub use versions::vm_m6;
pub use versions::vm_refunds_enhancement;
pub use versions::vm_virtual_blocks;
pub use zk_evm_1_3_1;
pub use zk_evm_1_3_3;
pub use zk_evm_1_4_0;
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ pub use old_vm::{
pub use oracles::storage::StorageOracle;

pub use tracers::dispatcher::TracerDispatcher;
pub use tracers::traits::{TracerPointer, VmTracer};
pub use tracers::traits::{ToTracerPointer, TracerPointer, VmTracer};

pub use utils::transaction_encoding::TransactionVmExt;

Expand Down

0 comments on commit bd268ac

Please sign in to comment.