Fixes import path in benchmark macro (#2437)

Fully-qualified path was not being used in benchmark macro for one of
the cases. This PR fixes this and removes the unnecessary import in a
couple of files, which I believe was done to fix this issue.
This commit is contained in:
gupnik
2023-11-22 17:32:49 +05:30
committed by GitHub
parent a9ba1e540f
commit 98f9e2ea9d
3 changed files with 1 additions and 3 deletions
@@ -517,7 +517,7 @@ pub fn benchmarks(
components,
// TODO: Not supported by V2 syntax as of yet.
// https://github.com/paritytech/substrate/issues/13132
pov_modes: vec![],
pov_modes: #krate::__private::vec![],
}
}).collect::<#krate::__private::Vec<_>>()
}