This repository was archived by the owner on Jan 27, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
orchestrator/src/plugins/node_groups
validator/src/validators/synthetic_data Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -276,9 +276,7 @@ async fn test_group_formation_with_multiple_configs() {
276276 let _ = plugin. try_form_new_groups ( ) . await ;
277277
278278 let mut conn = plugin. store . client . get_connection ( ) . unwrap ( ) ;
279- let groups: Vec < String > = conn
280- . keys ( format ! ( "{GROUP_KEY_PREFIX}*" ) . as_str ( ) )
281- . unwrap ( ) ;
279+ let groups: Vec < String > = conn. keys ( format ! ( "{GROUP_KEY_PREFIX}*" ) . as_str ( ) ) . unwrap ( ) ;
282280 assert_eq ! ( groups. len( ) , 2 ) ;
283281
284282 // Verify group was created
Original file line number Diff line number Diff line change @@ -801,8 +801,7 @@ mod tests {
801801 // Create multiple addresses
802802 let addresses: Vec < Address > = ( 0 ..5 )
803803 . map ( |i| {
804- Address :: from_str ( & format ! ( "0x{i}000000000000000000000000000000000000000" ) )
805- . unwrap ( )
804+ Address :: from_str ( & format ! ( "0x{i}000000000000000000000000000000000000000" ) ) . unwrap ( )
806805 } )
807806 . collect ( ) ;
808807
Original file line number Diff line number Diff line change @@ -270,9 +270,7 @@ impl SyntheticDataValidator<WalletProvider> {
270270 let _: ( ) = con
271271 . zadd ( "incomplete_groups" , group_key, new_deadline)
272272 . await
273- . map_err ( |e| {
274- Error :: msg ( format ! ( "Failed to update incomplete group deadline: {e}" ) )
275- } ) ?;
273+ . map_err ( |e| Error :: msg ( format ! ( "Failed to update incomplete group deadline: {e}" ) ) ) ?;
276274
277275 debug ! (
278276 "Updated deadline for incomplete group {group_key} to {new_deadline} ({minutes_from_now} minutes from now)"
You can’t perform that action at this time.
0 commit comments