Skip to content

Commit

Permalink
Fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
hqwangningbo committed May 24, 2024
1 parent ea14cf3 commit 7c67001
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions pallets/vtoken-minting/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ pallet-balances = { workspace = true }
xcm = { workspace = true }
cumulus-primitives-core = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
bifrost-ve-minting = { workspace = true }

[dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion pallets/vtoken-minting/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
use frame_support::pallet_prelude::Weight;
use parity_scale_codec::{Decode, Encode};
use sp_core::H160;
use sp_runtime::RuntimeDebug;

#[derive(PartialEq, Eq, Clone, Encode, Decode, scale_info::TypeInfo)]
#[derive(PartialEq, Eq, Clone, Encode, Decode, RuntimeDebug, scale_info::TypeInfo)]
pub enum RedeemTo<AccountId> {
/// Native chain.
Native(AccountId),
Expand Down

0 comments on commit 7c67001

Please sign in to comment.