From e7053e35fe837bb969f34c0bf8f8c84e8ebecb6e Mon Sep 17 00:00:00 2001 From: Santiago Carmuega Date: Fri, 10 Dec 2021 07:16:12 -0300 Subject: [PATCH] fix(alonzo): bad epoch data type --- pallas-alonzo/src/model.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pallas-alonzo/src/model.rs b/pallas-alonzo/src/model.rs index cf4b3ab..230e2f1 100644 --- a/pallas-alonzo/src/model.rs +++ b/pallas-alonzo/src/model.rs @@ -179,7 +179,7 @@ pub type Hash28 = ByteVec; pub type Hash32 = ByteVec; pub type PoolKeyhash = Hash28; -pub type Epoch = i64; +pub type Epoch = u64; pub type Genesishash = SkipCbor<5>; pub type GenesisDelegateHash = SkipCbor<6>; pub type VrfKeyhash = Hash32;