Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmadkaouk committed Apr 2, 2024
1 parent dacc2bd commit 1c9f297
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions frame/evm/precompile/storage-cleaner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ edition = { workspace = true }
repository = { workspace = true }

[dependencies]
scale-codec = { package = "parity-scale-codec", workspace = true }
# Substrate
frame-support = { workspace = true }
frame-system = { workspace = true }
Expand Down Expand Up @@ -38,6 +39,7 @@ precompile-utils = { workspace = true, features = ["std", "testing"] }
[features]
default = ["std"]
std = [
"scale-codec/std",
# Substrate
"frame-support/std",
"frame-system/std",
Expand Down
5 changes: 5 additions & 0 deletions frame/evm/precompile/storage-cleaner/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ impl frame_system::Config for Runtime {
type SS58Prefix = ();
type OnSetCode = ();
type MaxConsumers = ConstU32<16>;
type MultiBlockMigrator = ();
type PreInherents = ();
type PostInherents = ();
type PostTransactions = ();
type SingleBlockMigrations = ();
}

parameter_types! {
Expand Down

0 comments on commit 1c9f297

Please sign in to comment.