mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 02:21:04 +00:00
fix: Typo granpda -> grandpa (#4286)
This commit is contained in:
committed by
Robert Habermeier
parent
d4785ea314
commit
c071276187
@@ -8,7 +8,7 @@ edition = "2018"
|
||||
serde = { version = "1.0.101", optional = true, features = ["derive"] }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
|
||||
primitives = { package = "sp-core", path = "../../primitives/core", default-features = false }
|
||||
sp-finality-granpda = { path = "../../primitives/finality-grandpa", default-features = false }
|
||||
sp-finality-grandpa = { path = "../../primitives/finality-grandpa", default-features = false }
|
||||
rstd = { package = "sp-std", path = "../../primitives/sr-std", default-features = false }
|
||||
sp-runtime = { path = "../../primitives/sr-primitives", default-features = false }
|
||||
sp-staking = { path = "../../primitives/sr-staking-primitives", default-features = false }
|
||||
@@ -26,7 +26,7 @@ std = [
|
||||
"serde",
|
||||
"codec/std",
|
||||
"primitives/std",
|
||||
"sp-finality-granpda/std",
|
||||
"sp-finality-grandpa/std",
|
||||
"rstd/std",
|
||||
"support/std",
|
||||
"sp-runtime/std",
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
#![cfg_attr(not(feature = "std"), no_std)]
|
||||
|
||||
// re-export since this is necessary for `impl_apis` in runtime.
|
||||
pub use sp_finality_granpda as fg_primitives;
|
||||
pub use sp_finality_grandpa as fg_primitives;
|
||||
|
||||
use rstd::prelude::*;
|
||||
use codec::{self as codec, Encode, Decode, Error};
|
||||
|
||||
@@ -24,7 +24,7 @@ use support::{impl_outer_origin, impl_outer_event, parameter_types, weights::Wei
|
||||
use primitives::H256;
|
||||
use codec::{Encode, Decode};
|
||||
use crate::{AuthorityId, AuthorityList, GenesisConfig, Trait, Module, ConsensusLog};
|
||||
use sp_finality_granpda::GRANDPA_ENGINE_ID;
|
||||
use sp_finality_grandpa::GRANDPA_ENGINE_ID;
|
||||
|
||||
impl_outer_origin!{
|
||||
pub enum Origin for Test {}
|
||||
|
||||
Reference in New Issue
Block a user