Skip to content

Commit

Permalink
bounties calls docs fix (paritytech#12909)
Browse files Browse the repository at this point in the history
Co-authored-by: parity-processbot <>
  • Loading branch information
muharem authored and ltfschoen committed Feb 22, 2023
1 parent b44ad46 commit 96974af
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions frame/bounties/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,7 @@ pub enum BountyStatus<AccountId, BlockNumber> {
Approved,
/// The bounty is funded and waiting for curator assignment.
Funded,
/// A curator has been proposed by the `ApproveOrigin`. Waiting for acceptance from the
/// curator.
/// A curator has been proposed. Waiting for acceptance from the curator.
CuratorProposed {
/// The assigned curator of this bounty.
curator: AccountId,
Expand Down Expand Up @@ -348,7 +347,7 @@ pub mod pallet {
/// Approve a bounty proposal. At a later time, the bounty will be funded and become active
/// and the original deposit will be returned.
///
/// May only be called from `T::ApproveOrigin`.
/// May only be called from `T::SpendOrigin`.
///
/// # <weight>
/// - O(1).
Expand Down Expand Up @@ -380,7 +379,7 @@ pub mod pallet {

/// Assign a curator to a funded bounty.
///
/// May only be called from `T::ApproveOrigin`.
/// May only be called from `T::SpendOrigin`.
///
/// # <weight>
/// - O(1).
Expand Down

0 comments on commit 96974af

Please sign in to comment.