|
@@ -136,6 +136,9 @@ impl membership::WeightInfo for Weights {
|
|
|
fn remove_staking_account() -> Weight {
|
|
|
unimplemented!()
|
|
|
}
|
|
|
+ fn member_remark() -> Weight {
|
|
|
+ unimplemented!()
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
impl membership::Trait for Test {
|
|
@@ -288,6 +291,10 @@ impl proposals_engine::WeightInfo for MockProposalsEngineWeight {
|
|
|
fn cancel_active_and_pending_proposals(_: u32) -> u64 {
|
|
|
0
|
|
|
}
|
|
|
+
|
|
|
+ fn proposer_remark() -> u64 {
|
|
|
+ 0
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
impl Default for crate::Call<Test> {
|
|
@@ -469,6 +476,12 @@ impl working_group::WeightInfo for WorkingGroupWeightInfo {
|
|
|
fn leave_role(_: u32) -> Weight {
|
|
|
0
|
|
|
}
|
|
|
+ fn lead_remark() -> Weight {
|
|
|
+ 0
|
|
|
+ }
|
|
|
+ fn worker_remark() -> Weight {
|
|
|
+ 0
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
impl working_group::Trait<StorageWorkingGroupInstance> for Test {
|
|
@@ -706,6 +719,12 @@ impl council::WeightInfo for CouncilWeightInfo {
|
|
|
fn funding_request(_: u32) -> Weight {
|
|
|
0
|
|
|
}
|
|
|
+ fn councilor_remark() -> Weight {
|
|
|
+ 0
|
|
|
+ }
|
|
|
+ fn candidate_remark() -> Weight {
|
|
|
+ 0
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
parameter_types! {
|