Skip to content

Commit 3a6da41

Browse files
committed
fix: lints
1 parent d5c7313 commit 3a6da41

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
@@ -43,7 +43,7 @@ impl Codec {
4343
/// Decodes the input data and returns the decoded [`Batch`].
4444
pub fn decode<T: CommitDataSource>(input: &T) -> Result<Batch, CodecError> {
4545
let calldata = input.calldata();
46-
let version = get_codec_version(&calldata).ok_or(DecodingError::MissingCodecVersion)?;
46+
let version = get_codec_version(calldata).ok_or(DecodingError::MissingCodecVersion)?;
4747

4848
let payload = match version {
4949
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)