Skip to content

Commit

Permalink
Correct invalid constant
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Jun 19, 2024
1 parent b87f0dc commit 4efaec0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions substrate/abi/src/grandpa.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use sp_core::{ConstU32, bounded::BoundedVec};
use sp_consensus_grandpa::EquivocationProof;

use serai_primitives::{BlockNumber, SeraiAddress};
Expand All @@ -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,
Expand Down

0 comments on commit 4efaec0

Please sign in to comment.