From f5c5b3f114eff618edb6bccfd201f989ee4e31b0 Mon Sep 17 00:00:00 2001 From: enitrat Date: Mon, 30 Sep 2024 16:18:38 +0200 Subject: [PATCH] fix import --- crates/evm/src/instructions/system_operations.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/evm/src/instructions/system_operations.cairo b/crates/evm/src/instructions/system_operations.cairo index 8fe0ffb1..fcfb1a63 100644 --- a/crates/evm/src/instructions/system_operations.cairo +++ b/crates/evm/src/instructions/system_operations.cairo @@ -1,4 +1,4 @@ -use core::integer::CheckedAdd; +use core::num::traits::CheckedAdd; use crate::call_helpers::CallHelpers; use crate::create_helpers::{CreateHelpers, CreateType}; use crate::errors::{ensure, EVMError};