fix test. usize -> u64

This commit is contained in:
Bryan Stitt 2023-02-09 12:02:57 -08:00
parent 74ee5d1b0d
commit 90b57c7aed

View File

@ -196,7 +196,7 @@ mod tests {
min_sum_soft_limit: 1,
min_synced_rpcs: 1,
public_requests_per_period: Some(1_000_000),
response_cache_max_bytes: 10_usize.pow(7),
response_cache_max_bytes: 10_u64.pow(7),
redirect_public_url: Some("example.com/".to_string()),
redirect_rpc_key_url: Some("example.com/{{rpc_key_id}}".to_string()),
..Default::default()