From 8c56cc2f88504b548705c50f6bc4455d1c1a7280 Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Tue, 15 Aug 2023 14:25:15 +0300 Subject: [PATCH] chore(txpool): bench requires arbitrary feature (#4204) --- crates/transaction-pool/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/transaction-pool/Cargo.toml b/crates/transaction-pool/Cargo.toml index 5cf13b2575..ff7e1ee799 100644 --- a/crates/transaction-pool/Cargo.toml +++ b/crates/transaction-pool/Cargo.toml @@ -62,5 +62,5 @@ arbitrary = ["proptest", "reth-primitives/arbitrary"] [[bench]] name = "reorder" -required-features = ["test-utils"] +required-features = ["test-utils", "arbitrary"] harness = false