Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
nagisa committed Jun 19, 2024
1 parent 14b3679 commit 5bfbe8a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions runtime/near-vm-runner/src/logic/mocks/mock_memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use crate::logic::{MemSlice, MemoryLike};

use std::borrow::Cow;

#[derive(Clone)]
pub struct MockedMemory(Box<[u8]>);

impl MockedMemory {
Expand Down
2 changes: 1 addition & 1 deletion runtime/near-vm-runner/src/logic/tests/vm_logic_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ impl VMLogicBuilder {
&self.config,
&self.fees_config,
&self.promise_results,
&mut self.memory,
self.memory.clone(),
))
}

Expand Down

0 comments on commit 5bfbe8a

Please sign in to comment.