Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update approval-voting-regression-bench #5504

Merged
merged 3 commits into from
Aug 28, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ fn main() -> Result<(), String> {
println!("{}", average_usage);

// We expect no variance for received and sent
// but use 0.001 because we operate with floats
// but use 0.01 because we operate with floats
messages.extend(average_usage.check_network_usage(&[
("Received from peers", 52941.6071, 0.001),
("Sent to peers", 63810.1859, 0.001),
("Received from peers", 52941.6071, 0.01),
("Sent to peers", 63995.2200, 0.01),
]));
messages.extend(average_usage.check_cpu_usage(&[
("approval-distribution", 6.3912, 0.1),
Expand Down
Loading