Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
feat: add ED25519 to PubKey enum
Browse files Browse the repository at this point in the history
  • Loading branch information
RomarQ committed Nov 21, 2023
1 parent 1f0f85a commit b3d285b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pallets/marketplace/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ pub type PubKeys = BoundedVec<PubKey, ConstU32<NUMBER_OF_PUB_KEYS>>;
pub enum PubKey {
SECP256r1(PubKeyBytes),
SECP256k1(PubKeyBytes),
ED25519(PubKeyBytes),
}

pub type AssignmentFor<T> = Assignment<<T as Config>::Balance>;
Expand Down

0 comments on commit b3d285b

Please sign in to comment.