From dc1a85e6ca6b9521b0520ede8a6668fe8e53cf01 Mon Sep 17 00:00:00 2001 From: Tanmay Date: Wed, 3 Apr 2024 12:34:16 -0400 Subject: [PATCH] add issues --- proto/observer/ballot.proto | 1 + x/observer/types/params.go | 1 + 2 files changed, 2 insertions(+) diff --git a/proto/observer/ballot.proto b/proto/observer/ballot.proto index c89b50bb83..aa871cff35 100644 --- a/proto/observer/ballot.proto +++ b/proto/observer/ballot.proto @@ -20,6 +20,7 @@ enum BallotStatus { BallotInProgress = 2; } +// https://github.com/zeta-chain/node/issues/939 message Ballot { string index = 1; string ballot_identifier = 2; diff --git a/x/observer/types/params.go b/x/observer/types/params.go index fedae65b75..ea1db66657 100644 --- a/x/observer/types/params.go +++ b/x/observer/types/params.go @@ -100,6 +100,7 @@ func validateAdminPolicy(i interface{}) error { return nil } +// https://github.com/zeta-chain/node/issues/1983 func validateBallotMaturityBlocks(i interface{}) error { _, ok := i.(int64) if !ok {