From c17ec37f50ed4a2a35ded948a57b9efb5587f8a8 Mon Sep 17 00:00:00 2001 From: Honza Date: Mon, 13 Jan 2025 15:23:18 +0100 Subject: [PATCH] fix: add weight import --- runtime/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 691c4f6..573de4e 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -4,6 +4,7 @@ include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); extern crate alloc; +use crate::weights::constants::RocksDbWeight; use alloc::vec::Vec; use interface::*; #[cfg(feature = "std")]