Skip to content

Commit

Permalink
fix the comments more
Browse files Browse the repository at this point in the history
  • Loading branch information
moodysalem committed May 14, 2024
1 parent b102e51 commit dfd0a69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/governor.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ pub trait IGovernor<TContractState> {
fn cancel(ref self: TContractState, id: felt252);

// Report a breach in the proposer's voting weight below the proposal creation threshold, canceling the proposal.
// Anyone can call this method if the voting weight of the proposer falls below the proposal_creation_threshold
// at any time before the proposal is executed.
// The breach timestamp must be between when the proposal was created and the end of the voting period for the proposal.
// This method can be called by anyone at any time before the proposal is executed.
fn report_breach(ref self: TContractState, id: felt252, breach_timestamp: u64);

// Execute the given proposal.
Expand Down

0 comments on commit dfd0a69

Please sign in to comment.