Skip to content

Commit

Permalink
fix: slightly fix broken pov-estimate
Browse files Browse the repository at this point in the history
  • Loading branch information
mrshiposha committed Oct 2, 2023
1 parent 184b30a commit 57b7f8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/common/runtime_apis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ macro_rules! impl_common_runtime_apis {
{
use codec::Decode;

let uxt_decode = <<Block as BlockT>::Extrinsic as Decode>::decode(&mut &uxt)
let uxt_decode = <<Block as BlockT>::Extrinsic as Decode>::decode(&mut &*uxt)
.map_err(|_| DispatchError::Other("failed to decode the extrinsic"));

let uxt = match uxt_decode {
Expand Down

0 comments on commit 57b7f8c

Please sign in to comment.