update ss58 type to u16 (#8955)

This commit is contained in:
Jakub Pánik
2021-06-04 11:01:05 +02:00
committed by GitHub
parent 223529e4dd
commit 1480b13cc5
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ parameter_types! {
})
.avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)
.build_or_panic();
pub const SS58Prefix: u8 = 42;
pub const SS58Prefix: u16 = 42;
}
const_assert!(NORMAL_DISPATCH_RATIO.deconstruct() >= AVERAGE_ON_INITIALIZE_RATIO.deconstruct());