File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -165,11 +165,11 @@ decl_event! {
165
165
Approved ( Hash ) ,
166
166
/// A motion was not approved by the required threshold.
167
167
Disapproved ( Hash ) ,
168
- /// A motion was executed; `bool` is true if returned without error.
168
+ /// A motion was executed; result will be `Ok` if it returned without error.
169
169
Executed ( Hash , DispatchResult ) ,
170
- /// A single member did some action; `bool` is true if returned without error.
170
+ /// A single member did some action; result will be `Ok` if it returned without error.
171
171
MemberExecuted ( Hash , DispatchResult ) ,
172
- /// A proposal was closed after its duration was up.
172
+ /// A proposal was closed because its threshold was reached or after its duration was up.
173
173
Closed ( Hash , MemberCount , MemberCount ) ,
174
174
}
175
175
}
@@ -188,7 +188,7 @@ decl_error! {
188
188
DuplicateVote ,
189
189
/// Members are already initialized!
190
190
AlreadyInitialized ,
191
- /// The close call is made too early, before the end of the voting.
191
+ /// The close call was made too early, before the end of the voting.
192
192
TooEarly ,
193
193
/// There can only be a maximum of `MaxProposals` active proposals.
194
194
TooManyProposals ,
You can’t perform that action at this time.
0 commit comments