Skip to content

Commit 37258ee

Browse files
committed
feat: dont pretty-print json output
1 parent 876dced commit 37258ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stacks-signer/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ fn handle_generate_stacking_signature(
321321
.expect("Failed to generate signature");
322322

323323
let output_str = if args.json {
324-
serde_json::to_string_pretty(&serde_json::json!({
324+
serde_json::to_string(&serde_json::json!({
325325
"signerKey": to_hex(&public_key.to_bytes_compressed()),
326326
"signerSignature": to_hex(signature.to_rsv().as_slice()),
327327
"authId": format!("{}", args.auth_id),

0 commit comments

Comments
 (0)