@@ -26,7 +26,7 @@ use rstest::*;
2626use tap_aggregator:: { jsonrpsee_helpers, server as agg_server} ;
2727use tap_core:: {
2828 manager:: context:: memory:: { checks:: get_full_list_of_checks, * } ,
29- rav:: SignedRAV ,
29+ rav:: SignedRav ,
3030 receipt:: {
3131 checks:: { CheckList , StatefulTimestampCheck } ,
3232 Receipt , SignedReceipt ,
@@ -722,7 +722,7 @@ async fn test_tap_aggregator_rav_timestamp_cuttoff(
722722 let second_batch = & requests[ receipt_threshold_1 as usize ..2 * receipt_threshold_1 as usize ] ;
723723
724724 let params = rpc_params ! ( & aggregate_server_api_version( ) , & first_batch, None :: <( ) >) ;
725- let first_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRAV > =
725+ let first_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRav > =
726726 client. request ( "aggregate_receipts" , params) . await ?;
727727
728728 let params = rpc_params ! (
@@ -731,7 +731,7 @@ async fn test_tap_aggregator_rav_timestamp_cuttoff(
731731 first_rav_response. data
732732 ) ;
733733 let second_rav_response: Result <
734- jsonrpsee_helpers:: JsonRpcResponse < SignedRAV > ,
734+ jsonrpsee_helpers:: JsonRpcResponse < SignedRav > ,
735735 jsonrpsee:: core:: ClientError ,
736736 > = client. request ( "aggregate_receipts" , params) . await ;
737737 assert ! (
@@ -747,15 +747,15 @@ async fn test_tap_aggregator_rav_timestamp_cuttoff(
747747 let second_batch = & requests[ receipt_threshold_1 as usize ..2 * receipt_threshold_1 as usize ] ;
748748
749749 let params = rpc_params ! ( & aggregate_server_api_version( ) , & first_batch, None :: <( ) >) ;
750- let first_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRAV > =
750+ let first_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRav > =
751751 client. request ( "aggregate_receipts" , params) . await ?;
752752
753753 let params = rpc_params ! (
754754 & aggregate_server_api_version( ) ,
755755 & second_batch,
756756 first_rav_response. data
757757 ) ;
758- let second_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRAV > =
758+ let second_rav_response: jsonrpsee_helpers:: JsonRpcResponse < SignedRav > =
759759 client. request ( "aggregate_receipts" , params) . await ?;
760760
761761 // Compute the expected aggregate value and check that it matches the latest RAV.
0 commit comments