Fix docs urls (#11966)

* Fix docs urls

* Update bin/node-template/README.md

* Update frame/aura/src/lib.rs

* Run cargo +nightly fmt

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
Sacha Lansky
2022-08-03 12:34:33 +01:00
committed by GitHub
parent 5ebf17bfe1
commit df07421904
18 changed files with 39 additions and 40 deletions
+1 -1
View File
@@ -763,7 +763,7 @@ impl<T: MaxEncodedLen> MaxEncodedLen for WrapperOpaque<T> {
fn max_encoded_len() -> usize {
let t_max_len = T::max_encoded_len();
// See scale encoding https://docs.substrate.io/v3/advanced/scale-codec
// See scale encoding: https://docs.substrate.io/reference/scale-codec/
if t_max_len < 64 {
t_max_len + 1
} else if t_max_len < 2usize.pow(14) {