From 57b7f8c763eae893b12370e9984e58db468ac6de Mon Sep 17 00:00:00 2001 From: Daniel Shiposha Date: Mon, 2 Oct 2023 17:02:27 +0200 Subject: [PATCH] fix: slightly fix broken pov-estimate --- runtime/common/runtime_apis.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/common/runtime_apis.rs b/runtime/common/runtime_apis.rs index a3d9bae08f..f38234968c 100644 --- a/runtime/common/runtime_apis.rs +++ b/runtime/common/runtime_apis.rs @@ -692,7 +692,7 @@ macro_rules! impl_common_runtime_apis { { use codec::Decode; - let uxt_decode = <::Extrinsic as Decode>::decode(&mut &uxt) + let uxt_decode = <::Extrinsic as Decode>::decode(&mut &*uxt) .map_err(|_| DispatchError::Other("failed to decode the extrinsic")); let uxt = match uxt_decode {