@@ -868,7 +868,7 @@ async fn handle_commands(cli: &SpaceCli, command: Commands) -> Result<(), Client
868
868
} ;
869
869
870
870
let result = cli. sign_event ( space, event, anchor, false ) . await ?;
871
- println ! ( "{}" , serde_json:: to_string_pretty ( & result) . expect( "result" ) ) ;
871
+ println ! ( "{}" , serde_json:: to_string ( & result) . expect( "result" ) ) ;
872
872
}
873
873
Commands :: SignZone {
874
874
space,
@@ -879,7 +879,7 @@ async fn handle_commands(cli: &SpaceCli, command: Commands) -> Result<(), Client
879
879
. map_err ( |e| ClientError :: Custom ( format ! ( "Parse error: {}" , e) ) ) ?;
880
880
let result = cli. sign_event ( space, update, !skip_anchor, false ) . await ?;
881
881
882
- println ! ( "{}" , serde_json:: to_string_pretty ( & result) . expect( "result" ) ) ;
882
+ println ! ( "{}" , serde_json:: to_string ( & result) . expect( "result" ) ) ;
883
883
}
884
884
Commands :: RefreshAnchor {
885
885
input,
@@ -904,7 +904,7 @@ async fn handle_commands(cli: &SpaceCli, command: Commands) -> Result<(), Client
904
904
event. proof = None ;
905
905
event = cli. add_anchor ( event, prefer_recent) . await ?;
906
906
907
- println ! ( "{}" , serde_json:: to_string_pretty ( & event) . expect( "result" ) ) ;
907
+ println ! ( "{}" , serde_json:: to_string ( & event) . expect( "result" ) ) ;
908
908
}
909
909
Commands :: VerifyEvent { space, input } => {
910
910
let event = read_event ( input)
@@ -915,7 +915,7 @@ async fn handle_commands(cli: &SpaceCli, command: Commands) -> Result<(), Client
915
915
. await
916
916
. map_err ( |e| ClientError :: Custom ( e. to_string ( ) ) ) ?;
917
917
918
- println ! ( "{}" , serde_json:: to_string_pretty ( & event) . expect( "result" ) ) ;
918
+ println ! ( "{}" , serde_json:: to_string ( & event) . expect( "result" ) ) ;
919
919
}
920
920
}
921
921
0 commit comments