From 9d280a52900b7a6fb33e12790a8a6284a0703dd3 Mon Sep 17 00:00:00 2001 From: John Reed <87283488+JohnReedV@users.noreply.github.com> Date: Thu, 11 Jun 2026 15:05:47 -0700 Subject: [PATCH] fix pallet_subtensor_swap weight info --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 72ed290f0b..15607d1e09 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -1147,7 +1147,7 @@ impl pallet_subtensor_swap::Config for Runtime { type MaxFeeRate = SwapMaxFeeRate; type MinimumLiquidity = SwapMinimumLiquidity; type MinimumReserve = SwapMinimumReserve; - type WeightInfo = pallet_subtensor_swap::weights::DefaultWeight; + type WeightInfo = pallet_subtensor_swap::weights::SubstrateWeight; #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = SwapBenchmarkHelper; }