@@ -35,7 +35,7 @@ def test_plutus_v1(self):
35
35
36
36
print ("############### Transaction created ###############" )
37
37
print (signed_tx )
38
- print (signed_tx .to_cbor ())
38
+ print (signed_tx .to_cbor_hex ())
39
39
print ("############### Submitting transaction ###############" )
40
40
self .chain_context .submit_tx (signed_tx )
41
41
time .sleep (3 )
@@ -53,7 +53,7 @@ def test_plutus_v1(self):
53
53
54
54
print ("############### Transaction created ###############" )
55
55
print (signed_tx )
56
- print (signed_tx .to_cbor ())
56
+ print (signed_tx .to_cbor_hex ())
57
57
print ("############### Submitting transaction ###############" )
58
58
self .chain_context .submit_tx (signed_tx )
59
59
time .sleep (3 )
@@ -87,7 +87,7 @@ def test_plutus_v1(self):
87
87
88
88
print ("############### Transaction created ###############" )
89
89
print (signed_tx )
90
- print (signed_tx .to_cbor ())
90
+ print (signed_tx .to_cbor_hex ())
91
91
print ("############### Submitting transaction ###############" )
92
92
self .chain_context .submit_tx (signed_tx )
93
93
@@ -119,7 +119,7 @@ def test_plutus_v2_datum_hash(self):
119
119
120
120
print ("############### Transaction created ###############" )
121
121
print (signed_tx )
122
- print (signed_tx .to_cbor ())
122
+ print (signed_tx .to_cbor_hex ())
123
123
print ("############### Submitting transaction ###############" )
124
124
self .chain_context .submit_tx (signed_tx )
125
125
time .sleep (3 )
@@ -162,7 +162,7 @@ def test_plutus_v2_datum_hash(self):
162
162
163
163
print ("############### Transaction created ###############" )
164
164
print (signed_tx )
165
- print (signed_tx .to_cbor ())
165
+ print (signed_tx .to_cbor_hex ())
166
166
print ("############### Submitting transaction ###############" )
167
167
self .chain_context .submit_tx (signed_tx )
168
168
@@ -196,7 +196,7 @@ def test_plutus_v2_inline_script_inline_datum(self):
196
196
197
197
print ("############### Transaction created ###############" )
198
198
print (signed_tx )
199
- print (signed_tx .to_cbor ())
199
+ print (signed_tx .to_cbor_hex ())
200
200
print ("############### Submitting transaction ###############" )
201
201
self .chain_context .submit_tx (signed_tx )
202
202
time .sleep (3 )
@@ -257,7 +257,7 @@ def test_plutus_v2_ref_script(self):
257
257
258
258
print ("############### Transaction created ###############" )
259
259
print (signed_tx )
260
- print (signed_tx .to_cbor ())
260
+ print (signed_tx .to_cbor_hex ())
261
261
print ("############### Submitting transaction ###############" )
262
262
self .chain_context .submit_tx (signed_tx )
263
263
time .sleep (3 )
@@ -274,7 +274,7 @@ def test_plutus_v2_ref_script(self):
274
274
275
275
print ("############### Transaction created ###############" )
276
276
print (signed_tx )
277
- print (signed_tx .to_cbor ())
277
+ print (signed_tx .to_cbor_hex ())
278
278
print ("############### Submitting transaction ###############" )
279
279
self .chain_context .submit_tx (signed_tx )
280
280
time .sleep (3 )
@@ -306,7 +306,7 @@ def test_plutus_v2_ref_script(self):
306
306
307
307
print ("############### Transaction created ###############" )
308
308
print (signed_tx )
309
- print (signed_tx .to_cbor ())
309
+ print (signed_tx .to_cbor_hex ())
310
310
print ("############### Submitting transaction ###############" )
311
311
self .chain_context .submit_tx (signed_tx )
312
312
0 commit comments