From caf5397592bf3c8a7a8b98e89f7421c68ba80119 Mon Sep 17 00:00:00 2001 From: Green Baneling Date: Fri, 23 Jun 2023 01:18:21 +0100 Subject: [PATCH] Use production configuration for `fuel-core` during benches (#1227) Closes https://github.com/FuelLabs/fuel-core/issues/1216 --- benches/Cargo.toml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 2ca3f013603..dc9c8f510f8 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -10,7 +10,7 @@ clap = { workspace = true, features = ["derive"] } criterion = { version = "0.4", features = ["html_reports"] } ctrlc = "3.2.3" ethnum = "1.3" -fuel-core = { path = "../crates/fuel-core", default-features = false } +fuel-core = { path = "../crates/fuel-core", default-features = false, features = ["metrics", "rocksdb-production"] } fuel-core-storage = { path = "./../crates/storage" } fuel-core-types = { path = "./../crates/types", features = ["test-helpers"] } rand = { workspace = true } @@ -22,6 +22,3 @@ tikv-jemallocator = { workspace = true } [[bench]] harness = false name = "vm" - -[features] -default = ["fuel-core/rocksdb"]