We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1191308 commit e331209Copy full SHA for e331209
scalecodec/type_registry/polkadot.json
@@ -1,5 +1,5 @@
1
{
2
- "runtime_id": 24,
+ "runtime_id": 25,
3
"types": {
4
"Address": "AccountIdAddress",
5
"BlockNumber": "U32",
@@ -36,7 +36,7 @@
36
]
37
},
38
"CompactAssignments": "CompactAssignmentsFrom258",
39
- "RefCount": "u8"
+ "RefCount": "u32"
40
41
"versioning": [
42
test/test_type_registry.py
@@ -215,7 +215,9 @@ def test_valid_type_registry_presets(self):
215
self.assertEqual(
216
type_definition.__name__,
217
original_type_reg['types'][type_string].__name__,
218
- 'Type string "{}" mismatch between latest state and when versioning is applied'
+ 'Type string "{}" mismatch between latest state and when versioning is applied'.format(
219
+ type_string
220
+ )
221
)
222
223
0 commit comments