Skip to content

Commit

Permalink
Merge branch 'master' into feat/stableswap-whilest-pool-account
Browse files Browse the repository at this point in the history
  • Loading branch information
enthusiastmartin authored Jul 6, 2023
2 parents 154d88a + d0e04e2 commit 9076241
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion pallets/claims/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = 'pallet-claims'
version = '3.4.6'
version = '3.4.7'
description = 'HydraDX Claims Module'
authors = ['GalacticCouncil']
edition = '2021'
Expand Down
1 change: 0 additions & 1 deletion pallets/claims/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ pub mod pallet {
use frame_system::pallet_prelude::OriginFor;

#[pallet::pallet]
#[pallet::without_storage_info]
pub struct Pallet<T>(_);

#[pallet::hooks]
Expand Down
4 changes: 2 additions & 2 deletions pallets/claims/src/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#![allow(clippy::redundant_slicing)]

use codec::{Decode, Encode};
use codec::{Decode, Encode, MaxEncodedLen};

use sp_io::{crypto::secp256k1_ecdsa_recover, hashing::keccak_256};
use sp_std::vec::Vec;
Expand All @@ -27,7 +27,7 @@ use scale_info::TypeInfo;
#[cfg(feature = "std")]
use serde::{Deserialize, Deserializer, Serialize, Serializer};

#[derive(Clone, Copy, PartialEq, Eq, Encode, Decode, Default, Debug, TypeInfo)]
#[derive(Clone, Copy, PartialEq, Eq, Encode, Decode, Default, Debug, TypeInfo, MaxEncodedLen)]
pub struct EthereumAddress(pub [u8; 20]);

#[cfg(feature = "std")]
Expand Down

0 comments on commit 9076241

Please sign in to comment.