Skip to content

Commit

Permalink
Finish merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gianbelinche committed Sep 3, 2024
1 parent bf3d0fe commit 591f7db
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,12 @@ impl BootloaderState {
memory
}

pub(crate) fn get_pubdata_information(&self) -> &PubdataInput {
self.pubdata_information
.get()
.expect("Pubdata information is not set")
}

pub(crate) fn last_l2_block(&self) -> &BootloaderL2Block {
self.l2_blocks.last().unwrap()
}
Expand Down
6 changes: 3 additions & 3 deletions core/lib/multivm/src/versions/era_vm/vm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -567,9 +567,9 @@ impl<S: ReadStorage> VmInterface for Vm<S> {

fn inspect_transaction_with_bytecode_compression(
&mut self,
_tracer: Self::TracerDispatcher,
_tx: zksync_types::Transaction,
_with_compression: bool,
tracer: Self::TracerDispatcher,
tx: zksync_types::Transaction,
with_compression: bool,
) -> (
Result<(), crate::interface::BytecodeCompressionError>,
VmExecutionResultAndLogs,
Expand Down

0 comments on commit 591f7db

Please sign in to comment.