@@ -836,15 +836,15 @@ fn save_response_json(
836836#[ cfg( test) ]
837837mod test {
838838 //Public constants for convenience
839- pub const HOLESKY_PUBLIC_RPC_URL : & str = "https://ethereum-holesky -rpc.publicnode.com" ;
839+ pub const HOODI_PUBLIC_RPC_URL : & str = "https://ethereum-hoodi -rpc.publicnode.com" ;
840840 use super :: * ;
841841
842842 #[ tokio:: test]
843843 async fn computed_max_fee_for_larger_batch_is_smaller ( ) {
844- let small_fee = estimate_fee_per_proof_with_rpc ( 5 , HOLESKY_PUBLIC_RPC_URL )
844+ let small_fee = estimate_fee_per_proof_with_rpc ( 5 , HOODI_PUBLIC_RPC_URL )
845845 . await
846846 . unwrap ( ) ;
847- let large_fee = estimate_fee_per_proof_with_rpc ( 2 , HOLESKY_PUBLIC_RPC_URL )
847+ let large_fee = estimate_fee_per_proof_with_rpc ( 2 , HOODI_PUBLIC_RPC_URL )
848848 . await
849849 . unwrap ( ) ;
850850
@@ -853,10 +853,10 @@ mod test {
853853
854854 #[ tokio:: test]
855855 async fn computed_max_fee_for_more_proofs_larger_than_for_less_proofs ( ) {
856- let small_fee = estimate_fee_per_proof_with_rpc ( 20 , HOLESKY_PUBLIC_RPC_URL )
856+ let small_fee = estimate_fee_per_proof_with_rpc ( 20 , HOODI_PUBLIC_RPC_URL )
857857 . await
858858 . unwrap ( ) ;
859- let large_fee = estimate_fee_per_proof_with_rpc ( 10 , HOLESKY_PUBLIC_RPC_URL )
859+ let large_fee = estimate_fee_per_proof_with_rpc ( 10 , HOODI_PUBLIC_RPC_URL )
860860 . await
861861 . unwrap ( ) ;
862862
@@ -865,13 +865,13 @@ mod test {
865865
866866 #[ tokio:: test]
867867 async fn estimate_fee_are_larger_than_one_another ( ) {
868- let min_fee = estimate_fee ( HOLESKY_PUBLIC_RPC_URL , FeeEstimationType :: Custom ( 100 ) )
868+ let min_fee = estimate_fee ( HOODI_PUBLIC_RPC_URL , FeeEstimationType :: Custom ( 100 ) )
869869 . await
870870 . unwrap ( ) ;
871- let default_fee = estimate_fee ( HOLESKY_PUBLIC_RPC_URL , FeeEstimationType :: Default )
871+ let default_fee = estimate_fee ( HOODI_PUBLIC_RPC_URL , FeeEstimationType :: Default )
872872 . await
873873 . unwrap ( ) ;
874- let instant_fee = estimate_fee ( HOLESKY_PUBLIC_RPC_URL , FeeEstimationType :: Instant )
874+ let instant_fee = estimate_fee ( HOODI_PUBLIC_RPC_URL , FeeEstimationType :: Instant )
875875 . await
876876 . unwrap ( ) ;
877877
0 commit comments