From 1154f3ae250bad78222d539315ec875c7898ab76 Mon Sep 17 00:00:00 2001
From: bgallois <benjamin@gallois.cc>
Date: Tue, 24 Sep 2024 16:31:31 +0200
Subject: [PATCH] adjust length fees

---
 runtime/common/src/fees.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/common/src/fees.rs b/runtime/common/src/fees.rs
index 26e836b08..d69a5bb88 100644
--- a/runtime/common/src/fees.rs
+++ b/runtime/common/src/fees.rs
@@ -89,7 +89,7 @@ where
         {
             0u32.into()
         } else {
-            Self::Balance::saturated_from(length_in_bytes.ref_time() / 100u64)
+            Self::Balance::saturated_from(length_in_bytes.ref_time() / 350u64)
         }
     }
 
-- 
GitLab