From c303e316d10c1a013267b08cd9482187812cfa73 Mon Sep 17 00:00:00 2001 From: Rodrigo Quelhas Date: Tue, 21 Nov 2023 14:34:32 +0000 Subject: [PATCH] feat: add ED25519 to PubKey enum --- pallets/marketplace/src/types.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pallets/marketplace/src/types.rs b/pallets/marketplace/src/types.rs index 26a0e884..e596f828 100644 --- a/pallets/marketplace/src/types.rs +++ b/pallets/marketplace/src/types.rs @@ -153,6 +153,7 @@ pub type PubKeys = BoundedVec>; pub enum PubKey { SECP256r1(PubKeyBytes), SECP256k1(PubKeyBytes), + ED25519(PubKeyBytes) } pub type AssignmentFor = Assignment<::Balance>;