This repository was archived by the owner on Jul 6, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed 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