Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion eth-riscv-syscalls/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use alloc::borrow::Cow;

/// Error related to syscall convertions
/// Error related to syscall conversions
#[derive(Debug, thiserror_no_std::Error)]
pub enum Error {
#[error("Unknown syscall opcode: {0}")]
Expand Down
2 changes: 1 addition & 1 deletion r55/src/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ pub fn get_mapping_slot(key_bytes: Vec<u8>, id: U256) -> U256 {

pub fn read_db_slot(db: &mut InMemoryDB, contract: Address, slot: U256) -> U256 {
db.storage(contract, slot)
.expect("Unable to read storge slot")
.expect("Unable to read storage slot")
}

pub fn load_bytecode_from_file<P: AsRef<Path>>(path: P) -> Bytes {
Expand Down