This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ urllib3>=1.25.11
9
9
xxhash >= 1.3.0
10
10
pytest >= 6.1.1
11
11
12
- polymath-scalecodec == 2.4.1
12
+ polymath-scalecodec == 2.5.0
13
13
py-sr25519-bindings >= 0.1.2
14
14
py-ed25519-bindings >= 0.1.1
15
15
py-bip39-bindings >= 0.1.6
Original file line number Diff line number Diff line change 183
183
'requests>=2.24.0' ,
184
184
'urllib3>=1.25.10' ,
185
185
'xxhash>=1.3.0' ,
186
- 'polymath-scalecodec==2.4.1 ' ,
186
+ 'polymath-scalecodec==2.5.0 ' ,
187
187
'py-sr25519-bindings>=0.1.2' ,
188
188
'py-ed25519-bindings>=0.1.1' ,
189
189
'py-bip39-bindings>=0.1.6'
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ def test_compatibility_kusama_runtime(self):
53
53
self.assertLessEqual(
54
54
runtime_data['result']['specVersion'], type_reg.get('runtime_id'), 'Current runtime is incompatible'
55
55
)
56
- """
57
56
58
57
def test_create_balance_transfer(self):
59
58
# Create new keypair
@@ -118,6 +117,8 @@ def test_create_mortal_extrinsic(self):
118
117
# Extrinsic should be successful if account had balance, eitherwise 'Bad proof' error should be raised
119
118
self.assertEqual(e.args[0]['data'], 'Inability to pay some fees (e.g. account balance too low)')
120
119
120
+ """
121
+
121
122
def test_create_unsigned_extrinsic (self ):
122
123
123
124
call = self .kusama_substrate .compose_call (
@@ -131,6 +132,7 @@ def test_create_unsigned_extrinsic(self):
131
132
extrinsic = self .kusama_substrate .create_unsigned_extrinsic (call )
132
133
self .assertEqual (str (extrinsic .data ), '0x280402000ba09cc0317501' )
133
134
135
+ """
134
136
def test_payment_info(self):
135
137
keypair = Keypair(ss58_address="EaG2CRhJWPb7qmdcJvy3LiWdh26Jreu9Dx6R1rXxPmYXoDk")
136
138
@@ -149,6 +151,7 @@ def test_payment_info(self):
149
151
self.assertIn('weight', payment_info)
150
152
151
153
self.assertGreater(payment_info['partialFee'], 0)
154
+ """
152
155
153
156
def test_generate_signature_payload_lte_256_bytes (self ):
154
157
You can’t perform that action at this time.
0 commit comments