diff --git a/runtime/common/src/constants.rs b/runtime/common/src/constants.rs
index 8fb63da0f146216e9fe873aabf032eff4ce3cc3c..6b8d00591a83819589a4d34739bc5673dcf11472 100644
--- a/runtime/common/src/constants.rs
+++ b/runtime/common/src/constants.rs
@@ -42,8 +42,8 @@ pub const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);
 
 frame_support::parameter_types! {
     pub const DbWeight: frame_support::weights::RuntimeDbWeight = frame_support::weights::RuntimeDbWeight {
-        read: 25 * frame_support::weights::constants::WEIGHT_PER_MICROS,   // ~25 µs
-        write: 100 * frame_support::weights::constants::WEIGHT_PER_MICROS, // ~100 µs
+        read: 250 * frame_support::weights::constants::WEIGHT_PER_MICROS,   // ~25 µs
+        write: 1_000 * frame_support::weights::constants::WEIGHT_PER_MICROS, // ~100 µs
     };
 }