From 08a7a20675f40d5988e6c73a29da3acbc9a48cf3 Mon Sep 17 00:00:00 2001 From: Nimrod Weiss Date: Wed, 7 May 2025 15:41:34 +0300 Subject: [PATCH] feat(starknet_os): implement storage_write syscall --- crates/starknet_os/src/hint_processor/snos_syscall_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/starknet_os/src/hint_processor/snos_syscall_executor.rs b/crates/starknet_os/src/hint_processor/snos_syscall_executor.rs index 9c0859c3a6f..e949039a806 100644 --- a/crates/starknet_os/src/hint_processor/snos_syscall_executor.rs +++ b/crates/starknet_os/src/hint_processor/snos_syscall_executor.rs @@ -297,6 +297,6 @@ impl SyscallExecutor for SnosHintProcessor<'_, S> { syscall_handler: &mut Self, remaining_gas: &mut u64, ) -> SyscallResult { - todo!() + Ok(StorageWriteResponse {}) } }