From 248237647b70820e03e3d0c937124588e803f9fa Mon Sep 17 00:00:00 2001 From: Gavin Wood Date: Mon, 12 Aug 2019 17:23:09 +0200 Subject: [PATCH] Remark is trivial and doesn't deserve such a big weight (#3372) --- substrate/srml/system/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/srml/system/src/lib.rs b/substrate/srml/system/src/lib.rs index 684af7c6b8..1d17ef2b1c 100644 --- a/substrate/srml/system/src/lib.rs +++ b/substrate/srml/system/src/lib.rs @@ -239,7 +239,7 @@ decl_module! { } /// Make some on-chain remark. - #[weight = SimpleDispatchInfo::FixedNormal(1_000_000)] + #[weight = SimpleDispatchInfo::FixedNormal(10_000)] fn remark(origin, _remark: Vec) { ensure_signed(origin)?; }