Skip to content

Commit

Permalink
Refactor ca module to community_advisors
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Sanchez Quiros committed Oct 13, 2021
1 parent a8c4bb7 commit 13d1aec
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/bin/cli/rewards/community_advisors.rs
Expand Up @@ -3,7 +3,7 @@ use std::path::{Path, PathBuf};
use std::str::FromStr;

use super::Error;
use catalyst_toolbox::rewards::ca::{
use catalyst_toolbox::rewards::community_advisors::{
calculate_ca_rewards, ApprovedProposals, CaRewards, FundSetting, Funds, ProposalRewardSlots,
ProposalsReviews, Rewards,
};
Expand Down
File renamed without changes.
File renamed without changes.
Expand Up @@ -6,7 +6,7 @@ use lottery::TicketsDistribution;

use std::collections::HashMap;

pub use crate::rewards::ca::funding::ProposalRewardSlots;
pub use crate::rewards::community_advisors::funding::ProposalRewardSlots;
pub use funding::{FundSetting, Funds};

pub type CommunityAdvisor = String;
Expand Down
2 changes: 1 addition & 1 deletion src/rewards/mod.rs
@@ -1,2 +1,2 @@
pub mod ca;
pub mod community_advisors;
pub mod voters;

0 comments on commit 13d1aec

Please sign in to comment.