Skip to content

Commit 32549df

Browse files
committed
fix: lints
1 parent 106d5d1 commit 32549df

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

crates/codec/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Codec {
4646
/// Decodes the input data and returns the decoded [`Batch`].
4747
pub fn decode<T: CommitDataSource>(input: &T) -> Result<Batch, CodecError> {
4848
let calldata = input.calldata();
49-
let version = get_codec_version(&calldata).ok_or(DecodingError::MissingCodecVersion)?;
49+
let version = get_codec_version(calldata).ok_or(DecodingError::MissingCodecVersion)?;
5050

5151
let payload = match version {
5252
0 => decode_v0(calldata)?,

crates/derivation-pipeline/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ scroll-codec = { workspace = true, features = ["test-utils"] }
3434
[features]
3535
default = ["std"]
3636
std = [
37-
"scroll-alloy-consensus/std",
38-
"scroll-alloy-rpc-types-engine/std",
3937
"alloy-primitives/std",
4038
"alloy-rpc-types-engine/std",
39+
"alloy-eips/std",
4140
"reth-scroll-chainspec/std",
41+
"scroll-alloy-consensus/std",
42+
"scroll-alloy-rpc-types-engine/std",
4243
]

0 commit comments

Comments
 (0)