From 65ae3f8331ca96c272946edc6e844b49be140281 Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Wed, 14 Sep 2022 10:36:32 +0000 Subject: [PATCH] fix: return total_weight in scheduler --- --- a/pallets/scheduler/src/lib.rs +++ b/pallets/scheduler/src/lib.rs @@ -508,8 +508,7 @@ Lookup::::remove(id); } } - // Total weight should be 0, because the transaction is already paid for - Weight::zero() + total_weight } } -- gitstuff