@@ -37,8 +37,8 @@ namespace graphene { namespace chain {
37
37
public:
38
38
using operation_type = samet_fund_create_operation;
39
39
40
- void_result do_evaluate ( const samet_fund_create_operation& op );
41
- object_id_type do_apply ( const samet_fund_create_operation& op );
40
+ void_result do_evaluate ( const samet_fund_create_operation& op ) const ;
41
+ object_id_type do_apply ( const samet_fund_create_operation& op ) const ;
42
42
};
43
43
44
44
class samet_fund_delete_evaluator : public evaluator <samet_fund_delete_evaluator>
@@ -47,7 +47,7 @@ namespace graphene { namespace chain {
47
47
using operation_type = samet_fund_delete_operation;
48
48
49
49
void_result do_evaluate ( const samet_fund_delete_operation& op );
50
- void_result do_apply ( const samet_fund_delete_operation& op );
50
+ void_result do_apply ( const samet_fund_delete_operation& op ) const ;
51
51
52
52
const samet_fund_object* _fund = nullptr ;
53
53
};
@@ -58,7 +58,7 @@ namespace graphene { namespace chain {
58
58
using operation_type = samet_fund_update_operation;
59
59
60
60
void_result do_evaluate ( const samet_fund_update_operation& op );
61
- void_result do_apply ( const samet_fund_update_operation& op );
61
+ void_result do_apply ( const samet_fund_update_operation& op ) const ;
62
62
63
63
const samet_fund_object* _fund = nullptr ;
64
64
};
@@ -69,7 +69,7 @@ namespace graphene { namespace chain {
69
69
using operation_type = samet_fund_borrow_operation;
70
70
71
71
void_result do_evaluate ( const samet_fund_borrow_operation& op );
72
- void_result do_apply ( const samet_fund_borrow_operation& op );
72
+ void_result do_apply ( const samet_fund_borrow_operation& op ) const ;
73
73
74
74
const samet_fund_object* _fund = nullptr ;
75
75
};
@@ -80,7 +80,7 @@ namespace graphene { namespace chain {
80
80
using operation_type = samet_fund_repay_operation;
81
81
82
82
void_result do_evaluate ( const samet_fund_repay_operation& op );
83
- void_result do_apply ( const samet_fund_repay_operation& op );
83
+ void_result do_apply ( const samet_fund_repay_operation& op ) const ;
84
84
85
85
const samet_fund_object* _fund = nullptr ;
86
86
};
0 commit comments