Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tomg10 committed Jan 23, 2025
1 parent 0143e86 commit 7f73733
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/bin/external_node/src/config/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ fn parsing_optional_config_from_empty_env() {
Duration::from_millis(100)
);
assert_eq!(config.max_nonce_ahead, 50);
assert_eq!(config.estimate_gas_scale_factor, 1.2);
assert_eq!(config.estimate_gas_scale_factor, 1.3);
assert_eq!(config.gas_price_scale_factor, 1.5);
assert_eq!(config.estimate_gas_acceptable_overestimation, 5000);
assert_eq!(config.vm_concurrency_limit, 2_048);
assert_eq!(config.factory_deps_cache_size(), 128 * BYTES_IN_MEGABYTE);
assert_eq!(config.latest_values_cache_size(), 128 * BYTES_IN_MEGABYTE);
Expand Down

0 comments on commit 7f73733

Please sign in to comment.