register type sizes for u64 and u128 (#200)

Signed-off-by: Gregory Hill <gregorydhill@outlook.com>
This commit is contained in:
Greg Hill
2020-12-09 15:09:29 +00:00
committed by GitHub
parent 0b3c8d4523
commit 80aff7eb6e
+2
View File
@@ -96,6 +96,8 @@ impl<T: System> EventsDecoder<T> {
decoder.register_type_size::<[u8; 32]>("AuthorityId");
decoder.register_type_size::<u8>("u8");
decoder.register_type_size::<u32>("u32");
decoder.register_type_size::<u64>("u64");
decoder.register_type_size::<u128>("u128");
decoder.register_type_size::<u32>("AccountIndex");
decoder.register_type_size::<u32>("SessionIndex");
decoder.register_type_size::<u32>("PropIndex");