File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ pub trait Farm {
86
86
87
87
/// Sets the parameters of the farm (`start`, `end`, `rewards`).
88
88
///
89
- /// NOTE: Implementation should make sure that it's callabled only by a permission account (owner of the farm).
89
+ /// NOTE: Implementation should make sure that it's callable only by an authorized account (owner of the farm).
90
90
#[ ink( message) ]
91
91
fn owner_start_new_farm (
92
92
& mut self ,
@@ -99,11 +99,11 @@ pub trait Farm {
99
99
/// Generic method that allows for stopping (a running) farm.
100
100
/// Details are implementation-dependent (Common AMM will set the farm's `end` timestamp to current blocktime).
101
101
///
102
- /// NOTE: Implementation should make sure that it's callabled only by a permission account (owner of the farm).
102
+ /// NOTE: Implementation should make sure that it's callable only by an authorized account (owner of the farm).
103
103
#[ ink( message) ]
104
104
fn owner_stop_farm ( & mut self ) -> Result < ( ) , FarmError > ;
105
105
106
- /// NOTE: Implementation should make sure that it's callabled only by a permission account (owner of the farm).
106
+ /// NOTE: Implementation should make sure that it's callable only by an authorized account (owner of the farm).
107
107
#[ ink( message) ]
108
108
fn owner_withdraw_token ( & mut self , token : AccountId ) -> Result < ( ) , FarmError > ;
109
109
You can’t perform that action at this time.
0 commit comments