From 7bf45a97c2c96aedfe05a4ed78ca266a77ef0c0f Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 18 Feb 2022 07:51:26 -0500 Subject: [PATCH] feat: add Eq & Ord to Era (#53) --- pallas-primitives/src/framework.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallas-primitives/src/framework.rs b/pallas-primitives/src/framework.rs index 15677ca..2f1886d 100644 --- a/pallas-primitives/src/framework.rs +++ b/pallas-primitives/src/framework.rs @@ -21,7 +21,7 @@ where } } -#[derive(Debug, Copy, Clone)] +#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)] pub enum Era { Byron, Shelley,