From 8922ae417a51285c4935e53317cca89d72424207 Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Mon, 9 May 2022 07:02:13 -0400 Subject: [PATCH] Increase hard-coded vote extension max size to 1MB Signed-off-by: Thane Thomson --- types/vote.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/vote.go b/types/vote.go index bc58d8a56..6744d039d 100644 --- a/types/vote.go +++ b/types/vote.go @@ -16,7 +16,7 @@ const ( nilVoteStr string = "nil-Vote" // The maximum supported number of bytes in a vote extension. - MaxVoteExtensionSize int = 1024 + MaxVoteExtensionSize int = 1024 * 1024 ) var (