From 4efaec0f7b2cdf3784d410b54acc4b48b9b66a12 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Wed, 19 Jun 2024 10:32:08 -0400 Subject: [PATCH] Correct invalid constant --- substrate/abi/src/grandpa.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/substrate/abi/src/grandpa.rs b/substrate/abi/src/grandpa.rs index ead8dfc21..376b0b1d3 100644 --- a/substrate/abi/src/grandpa.rs +++ b/substrate/abi/src/grandpa.rs @@ -1,4 +1,3 @@ -use sp_core::{ConstU32, bounded::BoundedVec}; use sp_consensus_grandpa::EquivocationProof; use serai_primitives::{BlockNumber, SeraiAddress}; @@ -19,7 +18,7 @@ pub enum Call { #[cfg_attr(feature = "serde", derive(serde::Serialize))] #[cfg_attr(all(feature = "std", feature = "serde"), derive(serde::Deserialize))] pub enum Event { - NewAuthorities { authority_set: BoundedVec<(SeraiAddress, u64), ConstU32<0>> }, + NewAuthorities { authority_set: alloc::vec::Vec<(SeraiAddress, u64)> }, // TODO: Remove these Paused, Resumed,