From 186a7cb1e6b1745d9013b4556a14e5ffc0c09929 Mon Sep 17 00:00:00 2001 From: cryptoAtwill <108330426+cryptoAtwill@users.noreply.github.com> Date: Wed, 29 Mar 2023 00:41:35 +0800 Subject: [PATCH] Add checkpoint constructor (#80) * update checkpoint * make sig public --- gateway/src/checkpoint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateway/src/checkpoint.rs b/gateway/src/checkpoint.rs index 4bcda69..df57674 100644 --- a/gateway/src/checkpoint.rs +++ b/gateway/src/checkpoint.rs @@ -25,7 +25,7 @@ lazy_static! { pub struct Checkpoint { pub data: CheckData, #[serde(with = "serde_bytes")] - sig: Vec, + pub sig: Vec, } impl Checkpoint {