@@ -572,7 +572,7 @@ async fn test_manager_wrong_aggregator_keys(
572572
573573 let mut counter = 1 ;
574574 for receipt_1 in requests_1 {
575- let result: Result < ( ) , jsonrpsee:: core:: Error > =
575+ let result: Result < ( ) , jsonrpsee:: core:: ClientError > =
576576 client_1. request ( "request" , ( receipt_1, ) ) . await ;
577577 // The rav request is being made with messages that have been signed with a key that differs from the sender aggregator's.
578578 // So the Sender Aggregator should send an error to the requesting Indexer.
@@ -612,7 +612,7 @@ async fn test_manager_wrong_requestor_keys(
612612 let client_1 = HttpClientBuilder :: default ( ) . build ( indexer_1_address) ?;
613613
614614 for receipt_1 in wrong_requests {
615- let result: Result < ( ) , jsonrpsee:: core:: Error > =
615+ let result: Result < ( ) , jsonrpsee:: core:: ClientError > =
616616 client_1. request ( "request" , ( receipt_1, ) ) . await ;
617617 // The receipts have been signed with a key that the Indexer is not expecting.
618618 // This is one of the initial tests, so it should fail to receive the receipt
@@ -657,7 +657,7 @@ async fn test_tap_manager_rav_timestamp_cuttoff(
657657
658658 let mut counter = 1 ;
659659 for receipt_1 in repeated_timestamp_request {
660- let result: Result < ( ) , jsonrpsee:: core:: Error > =
660+ let result: Result < ( ) , jsonrpsee:: core:: ClientError > =
661661 client_1. request ( "request" , ( receipt_1, ) ) . await ;
662662
663663 // The first receipt in the second batch has the same timestamp as the last receipt in the first batch.
@@ -732,7 +732,7 @@ async fn test_tap_aggregator_rav_timestamp_cuttoff(
732732 ) ;
733733 let second_rav_response: Result <
734734 jsonrpsee_helpers:: JsonRpcResponse < SignedRAV > ,
735- jsonrpsee:: core:: Error ,
735+ jsonrpsee:: core:: ClientError ,
736736 > = client. request ( "aggregate_receipts" , params) . await ;
737737 assert ! (
738738 second_rav_response. is_err( ) ,
0 commit comments