@@ -681,14 +681,16 @@ struct
681681 let cmd_hash =
682682 With_status. data cmd
683683 |> Transaction_hash.User_command_with_valid_signature. create
684- |> Transaction_hash.User_command_with_valid_signature. hash
684+ |> Transaction_hash. User_command_with_valid_signature
685+ .transaction_hash
685686 in
686687 Set. add set cmd_hash )
687688 in
688689 Sequence. to_list dropped_commands
689690 |> List. partition_tf ~f: (fun cmd ->
690691 Set. mem command_hashes
691- (Transaction_hash.User_command_with_valid_signature. hash cmd) )
692+ (Transaction_hash. User_command_with_valid_signature
693+ .transaction_hash cmd ) )
692694 in
693695 List. iter committed_commands ~f: (fun cmd ->
694696 vk_table_lift_hashed vk_table_dec cmd ;
@@ -826,12 +828,10 @@ struct
826828 ~time_controller ~slot_tx_end: config.Config. slot_tx_end
827829 ; locally_generated_uncommitted =
828830 Hashtbl. create
829- ( module Transaction_hash.User_command_with_valid_signature. Stable
830- .Latest )
831+ (module Transaction_hash. User_command_with_valid_signature )
831832 ; locally_generated_committed =
832833 Hashtbl. create
833- ( module Transaction_hash.User_command_with_valid_signature. Stable
834- .Latest )
834+ (module Transaction_hash. User_command_with_valid_signature )
835835 ; current_batch = 0
836836 ; remaining_in_batch = max_per_15_seconds
837837 ; config
@@ -1376,12 +1376,16 @@ struct
13761376 in
13771377 let dropped_for_add_hashes =
13781378 List. map dropped_for_add
1379- ~f: Transaction_hash.User_command_with_valid_signature. hash
1379+ ~f:
1380+ Transaction_hash. User_command_with_valid_signature
1381+ .transaction_hash
13801382 |> Transaction_hash.Set. of_list
13811383 in
13821384 let dropped_for_size_hashes =
13831385 List. map dropped_for_size
1384- ~f: Transaction_hash.User_command_with_valid_signature. hash
1386+ ~f:
1387+ Transaction_hash. User_command_with_valid_signature
1388+ .transaction_hash
13851389 |> Transaction_hash.Set. of_list
13861390 in
13871391 let all_dropped_cmd_hashes =
@@ -1419,8 +1423,8 @@ struct
14191423 if
14201424 not
14211425 (Set. mem all_dropped_cmd_hashes
1422- (Transaction_hash.User_command_with_valid_signature. hash
1423- cmd ) )
1426+ (Transaction_hash. User_command_with_valid_signature
1427+ .transaction_hash cmd ) )
14241428 then register_locally_generated t cmd
14251429 | Error _ ->
14261430 () ) ;
@@ -1443,7 +1447,8 @@ struct
14431447 *)
14441448 if
14451449 Set. mem all_dropped_cmd_hashes
1446- (Transaction_hash.User_command_with_valid_signature. hash cmd)
1450+ (Transaction_hash. User_command_with_valid_signature
1451+ .transaction_hash cmd )
14471452 then `Trd cmd
14481453 else `Fst cmd
14491454 | Error (cmd , error ) ->
@@ -1577,7 +1582,8 @@ struct
15771582 ->
15781583 let cmp = compare batch1 batch2 in
15791584 let get_hash =
1580- Transaction_hash.User_command_with_valid_signature. hash
1585+ Transaction_hash. User_command_with_valid_signature
1586+ .transaction_hash
15811587 in
15821588 let get_nonce txn =
15831589 Transaction_hash.User_command_with_valid_signature. command txn
0 commit comments