mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: rm reth testing utils dep from reth-primitives-traits (#12542)
This commit is contained in:
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -8536,7 +8536,6 @@ dependencies = [
|
|||||||
"proptest-arbitrary-interop",
|
"proptest-arbitrary-interop",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"reth-codecs",
|
"reth-codecs",
|
||||||
"reth-testing-utils",
|
|
||||||
"revm-primitives",
|
"revm-primitives",
|
||||||
"roaring",
|
"roaring",
|
||||||
"serde",
|
"serde",
|
||||||
|
|||||||
@ -39,8 +39,6 @@ proptest = { workspace = true, optional = true }
|
|||||||
proptest-arbitrary-interop = { workspace = true, optional = true }
|
proptest-arbitrary-interop = { workspace = true, optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
reth-testing-utils.workspace = true
|
|
||||||
|
|
||||||
alloy-primitives = { workspace = true, features = ["arbitrary"] }
|
alloy-primitives = { workspace = true, features = ["arbitrary"] }
|
||||||
alloy-consensus = { workspace = true, features = ["arbitrary"] }
|
alloy-consensus = { workspace = true, features = ["arbitrary"] }
|
||||||
|
|
||||||
|
|||||||
@ -219,10 +219,8 @@ pub(super) mod serde_bincode_compat {
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use super::super::{serde_bincode_compat, SealedHeader};
|
use super::super::{serde_bincode_compat, SealedHeader};
|
||||||
|
|
||||||
use arbitrary::Arbitrary;
|
use arbitrary::Arbitrary;
|
||||||
use rand::Rng;
|
use rand::Rng;
|
||||||
use reth_testing_utils::generators;
|
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
use serde_with::serde_as;
|
use serde_with::serde_as;
|
||||||
|
|
||||||
@ -236,7 +234,7 @@ pub(super) mod serde_bincode_compat {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let mut bytes = [0u8; 1024];
|
let mut bytes = [0u8; 1024];
|
||||||
generators::rng().fill(bytes.as_mut_slice());
|
rand::thread_rng().fill(&mut bytes[..]);
|
||||||
let data = Data {
|
let data = Data {
|
||||||
transaction: SealedHeader::arbitrary(&mut arbitrary::Unstructured::new(&bytes))
|
transaction: SealedHeader::arbitrary(&mut arbitrary::Unstructured::new(&bytes))
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
|
|||||||
Reference in New Issue
Block a user