@@ -1300,7 +1300,6 @@ impl StacksChainState {
1300
1300
info ! ( "Smart-contract processed with {}" , err_type;
1301
1301
"txid" => %tx. txid( ) ,
1302
1302
"contract" => %contract_id,
1303
- "code" => %contract_code_str,
1304
1303
"error" => ?error) ;
1305
1304
// When top-level code in a contract publish causes a runtime error,
1306
1305
// the transaction is accepted, but the contract is not created.
@@ -1345,7 +1344,6 @@ impl StacksChainState {
1345
1344
info ! ( "Smart-contract encountered an analysis error at runtime" ;
1346
1345
"txid" => %tx. txid( ) ,
1347
1346
"contract" => %contract_id,
1348
- "code" => %contract_code_str,
1349
1347
"error" => %check_error) ;
1350
1348
1351
1349
let receipt =
@@ -1361,7 +1359,6 @@ impl StacksChainState {
1361
1359
warn ! ( "Unexpected analysis error invalidating transaction: if included, this will invalidate a block" ;
1362
1360
"txid" => %tx. txid( ) ,
1363
1361
"contract" => %contract_id,
1364
- "code" => %contract_code_str,
1365
1362
"error" => %check_error) ;
1366
1363
return Err ( Error :: ClarityError ( clarity_error:: Interpreter (
1367
1364
InterpreterError :: Unchecked ( check_error) ,
@@ -1372,7 +1369,6 @@ impl StacksChainState {
1372
1369
error ! ( "Unexpected error invalidating transaction: if included, this will invalidate a block" ;
1373
1370
"txid" => %tx. txid( ) ,
1374
1371
"contract_name" => %contract_id,
1375
- "code" => %contract_code_str,
1376
1372
"error" => ?e) ;
1377
1373
return Err ( Error :: ClarityError ( e) ) ;
1378
1374
}
0 commit comments